summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2015-05-13 12:53:27 +0200
committerStuart Bishop <stuart@stuartbishop.net>2015-05-13 12:53:27 +0200
commit575921a11b85d215d27072f96bb70410929969ad (patch)
tree174d9d40299a8b55f8107f4e05cab59ebb8055f2
parenta86f9f4ad3db3220acf07dbbda328352c42c046b (diff)
downloadpytz-575921a11b85d215d27072f96bb70410929969ad.tar.gz
Bump version numbers
-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 666cb3f..d186642 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,8 +9,8 @@ on how to use these modules.
'''
# The Olson database is updated several times a year.
-OLSON_VERSION = '2015b'
-VERSION = '2015.2' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2015d'
+VERSION = '2015.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 0fc36ba..1c766de 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='2015.2'
-EXPECTED_OLSON_VERSION='2015b'
+EXPECTED_VERSION='2015.4'
+EXPECTED_OLSON_VERSION='2015d'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'