summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2016-03-24 02:36:28 +0000
committerStuart Bishop <stuart@stuartbishop.net>2016-03-24 02:36:28 +0000
commitf17716dd637fac922b38a9890339f5e44131b2ac (patch)
tree34dd769c581c92ba248fad0eca4db05eb6f352b4
parent123d3df190fae42386fd58be685052853fd2ca27 (diff)
downloadpytz-f17716dd637fac922b38a9890339f5e44131b2ac.tar.gz
Bump version numbers to 2016.3/2016c
-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 7d5912a..c82cd43 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 = '2016b'
-VERSION = '2016.2' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2016c'
+VERSION = '2016.3' # 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 6427a02..da59156 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.2'
-EXPECTED_OLSON_VERSION='2016b'
+EXPECTED_VERSION='2016.3'
+EXPECTED_OLSON_VERSION='2016c'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'