From 96d036a7876fe1be97eec42401c85bef1ba8244f Mon Sep 17 00:00:00 2001 From: Stefan Becker Date: Tue, 17 Jan 2017 11:08:43 +0100 Subject: [PATCH] pypi doesn't accept +001 as version appendix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5439afc8a..cbe852967 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ builtins._ASTROPY_PACKAGE_NAME_ = PACKAGENAME # VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386) -VERSION = '0.5.0+001' +VERSION = '0.5.0.1' # Indicates if this version is a release version RELEASE = 'dev' not in VERSION