summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2020-12-25 08:03:13 +1100
committerStuart Bishop <stuart.bishop@canonical.com>2020-12-25 08:03:13 +1100
commit76ed1585bd17a981f295336cb88233deea8cafdc (patch)
tree34df2717f00629becc998172b57fd795aaf5d8c3
parentb83f8798a2aaefc2057bcf5b66223d3e77079de8 (diff)
downloadpytz-git-76ed1585bd17a981f295336cb88233deea8cafdc.tar.gz
2020.5 / 2020e releaserelease_2020.5
-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 052e568..578bc4a 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 = '2020d'
-VERSION = '2020.4' # pip compatible version number.
+OLSON_VERSION = '2020e'
+VERSION = '2020.5' # 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 8df730d..b0646cd 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 = '2020.4'
-EXPECTED_OLSON_VERSION = '2020d'
+EXPECTED_VERSION = '2020.5'
+EXPECTED_OLSON_VERSION = '2020e'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'