summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2016-03-21 04:24:58 +0000
committerStuart Bishop <stuart@stuartbishop.net>2016-03-21 04:24:58 +0000
commit9bb7dcc6889b88926cd6461862056445ad56ca7e (patch)
tree994f68bbb8efa1418bf57b5b2f062a24f513c388
parent51240e8d559c81fea296b24d7f8ab5a81775bb10 (diff)
downloadpytz-9bb7dcc6889b88926cd6461862056445ad56ca7e.tar.gz
Bump version numbers to 2016.2/2016b
-rw-r--r--src/pytz/__init__.py6
-rw-r--r--src/pytz/tests/test_tzinfo.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 373e1fb..7d5912a 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -8,9 +8,9 @@ See the datetime section of the Python Library Reference for information
on how to use these modules.
'''
-# The Olson database is updated several times a year.
-OLSON_VERSION = '2016a'
-VERSION = '2016.1' # Switching to pip compatible version numbering.
+# The IANA (nee Olson) database is updated several times a year.
+OLSON_VERSION = '2016b'
+VERSION = '2016.2' # 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 567be45..6427a02 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -21,8 +21,8 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION='2016.1'
-EXPECTED_OLSON_VERSION='2016a'
+EXPECTED_VERSION='2016.2'
+EXPECTED_OLSON_VERSION='2016b'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'