summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2014-11-27 12:40:58 +0700
committerStuart Bishop <stuart@stuartbishop.net>2014-11-27 12:40:58 +0700
commit1af56299cd02d2918190b3930988f08004128a2e (patch)
treeb56756c87fe7b05737213597c790ad008ceeaf3e
parentce10d7fae1e737c54634720e969c731cc172c062 (diff)
downloadpytz-1af56299cd02d2918190b3930988f08004128a2e.tar.gz
Bump version numbers to 2014.10/2014j
-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 eddf6f0..875d57f 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 = '2014i'
-VERSION = '2014.9' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2014j'
+VERSION = '2014.10' # 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 677649d..2753446 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.9'
-EXPECTED_OLSON_VERSION='2014i'
+EXPECTED_VERSION='2014.10'
+EXPECTED_OLSON_VERSION='2014j'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'