summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2015-03-23 13:44:00 +0700
committerStuart Bishop <stuart@stuartbishop.net>2015-03-23 13:44:00 +0700
commit380c2798eb784e2d10c2c897da4e8e09559d8b98 (patch)
treeaba2cd1d765982dc51639d0645a742c9b6288699
parenta64fc6af5b3a9166b19479e091f323ebf17f75eb (diff)
downloadpytz-380c2798eb784e2d10c2c897da4e8e09559d8b98.tar.gz
Bump version numbers to 2015.2/2015b
-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 875d57f..666cb3f 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 = '2014j'
-VERSION = '2014.10' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2015b'
+VERSION = '2015.2' # 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 922bcb1..0fc36ba 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.10'
-EXPECTED_OLSON_VERSION='2014j'
+EXPECTED_VERSION='2015.2'
+EXPECTED_OLSON_VERSION='2015b'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'