From d18eb00ddeea4cba6fddd0382c242cfa28297fc3 Mon Sep 17 00:00:00 2001 From: Richard Gerum <14153051+rgerum@users.noreply.github.com> Date: Mon, 20 Jul 2020 11:01:35 +0200 Subject: [PATCH] set version to v1.0.0 --- 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..796382c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -88,9 +88,9 @@ # built documents. # # The short X.Y version. -version = '-v' +version = '1.0.0' # The full version, including alpha/beta/rc tags. -release = '-v' +release = '1.0.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..fb294ef 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.0.0' diff --git a/setup.py b/setup.py index 54b90c4..2607a57 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ pass setup(name='pylustrator', - version="-v", + version="1.0.0", description='Adds interactivity to arrange panels in matplotlib', long_description=long_description, url='https://bitbucket.org/fabry_biophysics/pylustrator',