summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2018-10-24 15:38:17 +0700
committerStuart Bishop <stuart.bishop@canonical.com>2018-10-24 15:38:17 +0700
commit566ad8ae76418cf6b797a2906c446a9c1382a706 (patch)
treedf4eb440356bc8973e43959614ab81b0b547abd3
parent3fd1fec7e5e10f6911158dbd940ce82ac157a89f (diff)
downloadpytz-git-566ad8ae76418cf6b797a2906c446a9c1382a706.tar.gz
Bump version numbers to 2018.6/2018f
-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 f98a60b..12ad537 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 = '2018e'
-VERSION = '2018.5' # pip compatible version number.
+OLSON_VERSION = '2018f'
+VERSION = '2018.6' # 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 b2640a8..3fb74af 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.5'
-EXPECTED_OLSON_VERSION = '2018e'
+EXPECTED_VERSION = '2018.6'
+EXPECTED_OLSON_VERSION = '2018f'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'