summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2015-09-21 17:41:39 +0700
committerStuart Bishop <stuart@stuartbishop.net>2015-09-21 17:41:39 +0700
commit00fc52959f8591aecb994c96d53fe4aef105388c (patch)
tree83a11bb39d8d3ce9020b518d95a79cf7cc7c997e
parent5ea50a7ba6592c1a0f156075231b1593e060200f (diff)
downloadpytz-00fc52959f8591aecb994c96d53fe4aef105388c.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 d186642..55eaa8b 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 = '2015d'
-VERSION = '2015.4' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2015f'
+VERSION = '2015.6' # 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 1c766de..4157bd4 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.4'
-EXPECTED_OLSON_VERSION='2015d'
+EXPECTED_VERSION='2015.6'
+EXPECTED_OLSON_VERSION='2015f'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'