summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2020-04-28 08:04:44 +0000
committerStuart Bishop <stuart.bishop@canonical.com>2020-04-28 08:04:44 +0000
commitb25606afe32681a98c68c51e5703173408d9e69b (patch)
treed110e701a469ccd6fe7e90f94b80115cc0144e9b
parent238b4f65aba1677ec5a8138183852a7f87243a54 (diff)
downloadpytz-git-b25606afe32681a98c68c51e5703173408d9e69b.tar.gz
Bump version numbers to 2020.1/2020a
-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 958b827..c25a1d1 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 = '2019c'
-VERSION = '2019.3' # pip compatible version number.
+OLSON_VERSION = '2020a'
+VERSION = '2020.1' # 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 35430e8..0d673bc 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 # noqa
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION = '2019.3'
-EXPECTED_OLSON_VERSION = '2019c'
+EXPECTED_VERSION = '2020.1'
+EXPECTED_OLSON_VERSION = '2020a'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'