summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2022-03-20 11:22:01 +1100
committerStuart Bishop <stuart@stuartbishop.net>2022-03-20 11:22:01 +1100
commitbd7b5288d7143fba7c5655ae8a81c0eb1ea9b1d7 (patch)
tree234569e5da2ac9d1a188e249f23456448885ba42
parent915095904be0bc309ee2b73f911d6ef94ad22e72 (diff)
downloadpytz-git-bd7b5288d7143fba7c5655ae8a81c0eb1ea9b1d7.tar.gz
Bump version numbers to 2022.1/2022arelease_2022.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 50c5b55..7155e58 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 = '2021c'
-VERSION = '2021.3' # pip compatible version number.
+OLSON_VERSION = '2022a'
+VERSION = '2022.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 a16c870..7d09617 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 = '2021.3'
-EXPECTED_OLSON_VERSION = '2021c'
+EXPECTED_VERSION = '2022.1'
+EXPECTED_OLSON_VERSION = '2022a'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'