From 02ca901cae1e2bfcab28ba19c969aa742fda9729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Urba=C5=84czyk?= Date: Thu, 13 Aug 2020 17:49:59 +0200 Subject: [PATCH] Mark dev version in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cccb00b0..f6300125 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import setup, find_packages # if we are building in travis, use the build number as the sub-minor version -version = "2.0" +version = "2.1dev" if "TRAVIS_TAG" in os.environ.keys(): version = os.environ["TRAVIS_TAG"]