From 8cf6a501b0aee67d89aaea2c4664913aa928e604 Mon Sep 17 00:00:00 2001 From: JM Rohwer Date: Tue, 19 Apr 2022 14:38:34 +0200 Subject: [PATCH] fix version string --- identifiability.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/identifiability.py b/identifiability.py index 7f331b2..ce701f7 100644 --- a/identifiability.py +++ b/identifiability.py @@ -15,7 +15,7 @@ from matplotlib import pyplot as plt from multiprocessing import Pool -__version__ = 0.3.1 +__version__ = '0.3.1' CONF_ERR_GEN = 'Cannot determine Confidence Intervals' CONF_ERR_STDERR = '%s without sensible uncertainty estimates' % CONF_ERR_GEN diff --git a/setup.py b/setup.py index 78f89d2..a1647e8 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup -__version__ = 0.3.1 +__version__ = '0.3.1' # The directory containing this file README_name = __file__.replace('setup.py', 'README.md')