summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2018-10-29 17:05:01 +0700
committerStuart Bishop <stuart.bishop@canonical.com>2018-10-29 17:05:01 +0700
commit024e87765ac37cd5b818347c3e6afa98a1e4f5a6 (patch)
treeb6f539ae7935d207ee2ae7e9aa2f33ad60b66ffd
parent33997e9a17fae2ecc9f825eac056e22ea4d5dc27 (diff)
downloadpytz-git-024e87765ac37cd5b818347c3e6afa98a1e4f5a6.tar.gz
Bump version numbers to 2018.7./2018grelease_2018.7
-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 12ad537..b6939c1 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -22,8 +22,8 @@ from pytz.tzfile import build_tzinfo
# The IANA (nee Olson) database is updated several times a year.
-OLSON_VERSION = '2018f'
-VERSION = '2018.6' # pip compatible version number.
+OLSON_VERSION = '2018g'
+VERSION = '2018.7' # pip compatible version number.
__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 3fb74af..b95fba2 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -27,8 +27,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 = '2018.6'
-EXPECTED_OLSON_VERSION = '2018f'
+EXPECTED_VERSION = '2018.7'
+EXPECTED_OLSON_VERSION = '2018g'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'