summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2014-05-15 14:53:54 +0700
committerStuart Bishop <stuart@stuartbishop.net>2014-05-15 14:53:54 +0700
commit7cfa84225cb4cea506e1158e9b3ddef5cc5f716c (patch)
tree99135421190c62558a5b9953ff820ef6a7c751d2
parent66ca1c5cea8bd738fe0f90a237f574e03a2dab99 (diff)
downloadpytz-7cfa84225cb4cea506e1158e9b3ddef5cc5f716c.tar.gz
Bump version number to 2014.3/2014c
-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 647d091..201fcd4 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 = '2014b'
-VERSION = '2014.2' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2014c'
+VERSION = '2014.3' # 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 7550272..5dd7a39 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.2'
-EXPECTED_OLSON_VERSION='2014b'
+EXPECTED_VERSION='2014.3'
+EXPECTED_OLSON_VERSION='2014c'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'