From d02d4c131f2f0d8b8998bfc5aee8eb4fb6119fcd Mon Sep 17 00:00:00 2001 From: Richard Gerum Date: Fri, 12 Feb 2021 14:33:50 +0100 Subject: [PATCH] fixed version number --- docs/conf.py | 4 ++-- pylustrator/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 60918e8..19eb401 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -88,9 +88,9 @@ # built documents. # # The short X.Y version. -version = '-v' +version = '1.1.0' # The full version, including alpha/beta/rc tags. -release = '-v' +release = '1.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pylustrator/__init__.py b/pylustrator/__init__.py index 60d1503..eda6f4e 100644 --- a/pylustrator/__init__.py +++ b/pylustrator/__init__.py @@ -25,4 +25,4 @@ from .lab_colormap import LabColormap from .helper_functions import loadFigureFromFile as load -__version__ = '-v' +__version__ = '1.1.0' diff --git a/setup.py b/setup.py index 54b90c4..0d002c7 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ pass setup(name='pylustrator', - version="-v", + version="1.1.0", description='Adds interactivity to arrange panels in matplotlib', long_description=long_description, url='https://bitbucket.org/fabry_biophysics/pylustrator',