summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2014-11-03 15:21:08 +0700
committerStuart Bishop <stuart@stuartbishop.net>2014-11-03 15:21:08 +0700
commit86eb5b8775bd9fa105ddc3338a99c8df6c73c161 (patch)
treeaff90f193b04cf559dafb1f24f5cda3e288c0ff4
parentb05d29e34d66825b880c63994ff238ef25d8be51 (diff)
downloadpytz-86eb5b8775bd9fa105ddc3338a99c8df6c73c161.tar.gz
Bump version strings
-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 e2cced0..eddf6f0 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 = '2014g'
-VERSION = '2014.7' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2014i'
+VERSION = '2014.9' # 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 5a92959..adf622a 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='2014.7'
-EXPECTED_OLSON_VERSION='2014g'
+EXPECTED_VERSION='2014.9'
+EXPECTED_OLSON_VERSION='2014i'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'