summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2021-02-01 19:03:41 +1100
committerStuart Bishop <stuart.bishop@canonical.com>2021-02-01 19:03:41 +1100
commitb3b0aef2dbb7e2ea921fdb6a00d00f68b52cb2c9 (patch)
tree2fc372abe769222bfba8740dd69ac3d2cead8249
parentf8bad816c1eaa3a3a9d90b7aa6d6d06bc4ac87a8 (diff)
downloadpytz-git-b3b0aef2dbb7e2ea921fdb6a00d00f68b52cb2c9.tar.gz
Bump version numbers to 2021.1/2021arelease_2021.1
-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 578bc4a..3de0391 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 = '2020e'
-VERSION = '2020.5' # pip compatible version number.
+OLSON_VERSION = '2021a'
+VERSION = '2021.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 b0646cd..69ac1b5 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.5'
-EXPECTED_OLSON_VERSION = '2020e'
+EXPECTED_VERSION = '2021.1'
+EXPECTED_OLSON_VERSION = '2021a'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'