summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2014-03-21 06:14:49 +0000
committerStuart Bishop <stuart@stuartbishop.net>2014-03-21 06:14:49 +0000
commitf866b409a00bd2c44b34464861e8fdb59b89f138 (patch)
tree0bc6d7098f70dc8b74b88612f3ae975da547eb38
parenteaf9f5423bacb0bd0dd597cc7204c2d14f0829fe (diff)
downloadpytz-f866b409a00bd2c44b34464861e8fdb59b89f138.tar.gz
Bug fix version numbers
-rw-r--r--src/pytz/__init__.py2
-rw-r--r--src/pytz/tests/test_tzinfo.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 575d890..5880e87 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -10,7 +10,7 @@ on how to use these modules.
# The Olson database is updated several times a year.
OLSON_VERSION = '2014a'
-VERSION = '2014.1' # Switching to pip compatible version numbering.
+VERSION = '2014.1.1' # Switching to pip compatible version numbering.
__version__ = VERSION
OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling
diff --git a/src/pytz/tests/test_tzinfo.py b/src/pytz/tests/test_tzinfo.py
index 2c61b70..cd9b59b 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -21,7 +21,7 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION='2014.1'
+EXPECTED_VERSION='2014.1.1'
EXPECTED_OLSON_VERSION='2014a'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'