summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2014-03-14 15:51:03 +0700
committerStuart Bishop <stuart@stuartbishop.net>2014-03-14 15:51:03 +0700
commit6d7de33f12264e88456b0c91c152c178aa25dbfe (patch)
treea408ac5c3b736cbdf2d9b7025ae4dbf01f4c2641
parentdaa09e9f1ec79a61ffa194ac8c1afce386806e6e (diff)
downloadpytz-6d7de33f12264e88456b0c91c152c178aa25dbfe.tar.gz
Bump version numbers to 2014.1/2014arelease_2014.1
-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 e63b0ff..575d890 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 = '2013i'
-VERSION = '2013.9' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2014a'
+VERSION = '2014.1' # 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 4a5beff..2c61b70 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='2013.9'
-EXPECTED_OLSON_VERSION='2013i'
+EXPECTED_VERSION='2014.1'
+EXPECTED_OLSON_VERSION='2014a'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'