summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2013-10-02 04:00:19 +0000
committerStuart Bishop <stuart@stuartbishop.net>2013-10-02 04:00:19 +0000
commit5a55bd29f933411223811689f6372bb3a61ffd07 (patch)
treeab77598a2f79fbb08acb69f25529957628de242a
parente0c961e4f7d72941424de6a0629e0fde0014d28e (diff)
downloadpytz-5a55bd29f933411223811689f6372bb3a61ffd07.tar.gz
Bump version numbers to 2013.7 (2013g)
-rw-r--r--src/pytz/__init__.py6
-rw-r--r--src/pytz/tests/test_tzinfo.py2
2 files changed, 3 insertions, 5 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 67783ca..eae1d12 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,10 +9,8 @@ on how to use these modules.
'''
# The Olson database is updated several times a year.
-OLSON_VERSION = '2013f'
-VERSION = '2013.6' # Switching to pip compatible version numbering.
-# Version format for a patch release - only one so far.
-#VERSION = OLSON_VERSION + '.2'
+OLSON_VERSION = '2013g'
+VERSION = '2013.7' # 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 1e1787d..fb08852 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -21,7 +21,7 @@ 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.6'
+EXPECTED_VERSION='2013.7'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'