From 13a040e45dc4b1bbb971464f2f7cef5d834272a1 Mon Sep 17 00:00:00 2001 From: Michael Clerx Date: Tue, 18 Sep 2018 15:05:43 +0100 Subject: [PATCH] Updated version number to 0.1.0 --- pints/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pints/__init__.py b/pints/__init__.py index 11c904ad3..1077053a7 100644 --- a/pints/__init__.py +++ b/pints/__init__.py @@ -14,7 +14,7 @@ # # Version info: Remember to keep this in sync with setup.py! # -VERSION_INT = 0, 0, 1 +VERSION_INT = 0, 1, 0 VERSION = '.'.join([str(x) for x in VERSION_INT]) if sys.version_info[0] < 3: del(x) # Before Python3, list comprehension iterators leaked