summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2016-04-22 19:38:26 +0700
committerStuart Bishop <stuart@stuartbishop.net>2016-04-22 19:38:26 +0700
commitd807e8cd0fe82a03d74ef90e889fd1f3c1eabb30 (patch)
tree4114b516fbf8abca6131b8d2e60437cb81acf162
parent9ad882bb434094c695298d7713c3b8dc34d3c65e (diff)
downloadpytz-d807e8cd0fe82a03d74ef90e889fd1f3c1eabb30.tar.gz
Bump revision numbers to 2016.4/2016d
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index c82cd43..3ef1636 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,8 +9,8 @@ on how to use these modules.
'''
# The IANA (nee Olson) database is updated several times a year.
-OLSON_VERSION = '2016c'
-VERSION = '2016.3' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2016d'
+VERSION = '2016.4' # 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 da59156..57011a3 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.3'
-EXPECTED_OLSON_VERSION='2016c'
+EXPECTED_VERSION='2016.4'
+EXPECTED_OLSON_VERSION='2016d'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'