summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2015-10-26 12:29:06 +0700
committerStuart Bishop <stuart@stuartbishop.net>2015-10-26 12:29:06 +0700
commitae82fbc71b374a5a5b32bf3bbb38ebb97af6e715 (patch)
tree508d8c2aa0f2e52f83750add4e96701ee1e98a60
parent17fd77664afec0d2c803a950fbcb7584e06b3c7d (diff)
downloadpytz-ae82fbc71b374a5a5b32bf3bbb38ebb97af6e715.tar.gz
Bump version numbers
-rw-r--r--src/pytz/__init__.py6
-rw-r--r--src/pytz/tests/test_tzinfo.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index e30ef25..51406ca 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 = '2015f'
-VERSION = '2015.6' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2015g'
+VERSION = '2015.7' # Switching to pip compatible version numbering.
__version__ = VERSION
OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling
@@ -241,7 +241,7 @@ class UTC(datetime.tzinfo):
return "UTC"
-UTC = utc = UTC() # UTC is a singleton
+UTC = utc = UTC() # UTC is a singleton
def _UTC():
diff --git a/src/pytz/tests/test_tzinfo.py b/src/pytz/tests/test_tzinfo.py
index 4157bd4..4b192a0 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='2015.6'
-EXPECTED_OLSON_VERSION='2015f'
+EXPECTED_VERSION='2015.7'
+EXPECTED_OLSON_VERSION='2015g'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'