summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2019-01-07 18:53:15 +1100
committerStuart Bishop <stuart.bishop@canonical.com>2019-01-07 18:53:15 +1100
commite7193ead5ace1ccaeb4a33d185a42b50c9cbaef9 (patch)
treed4aa782fa0a2a206b754315890ea6d1226829f70
parentca2583fc3a3f500b9d76d6105a81c92ec82b1e38 (diff)
downloadpytz-git-e7193ead5ace1ccaeb4a33d185a42b50c9cbaef9.tar.gz
Bump version numbers to 2018.9/2018irelease_2018.9
-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 b6939c1..6208a1e 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 = '2018g'
-VERSION = '2018.7' # pip compatible version number.
+OLSON_VERSION = '2018i'
+VERSION = '2018.9' # 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 b95fba2..91104cd 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.7'
-EXPECTED_OLSON_VERSION = '2018g'
+EXPECTED_VERSION = '2018.9'
+EXPECTED_OLSON_VERSION = '2018i'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'