summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2022-10-02 15:54:09 +1100
committerStuart Bishop <stuart@stuartbishop.net>2022-10-02 15:54:09 +1100
commit04b5402ded7140343f23f0757641b08cc01a229f (patch)
treea9d14d003dbb4b73dcb4c6c7cb12b08337f40acb
parentd901dafe84aa55bd498f1ebb2a5b6b05a3107260 (diff)
downloadpytz-git-master.tar.gz
Bump version numbers to 2022.4/2022dHEADrelease_2022.4masterbackzone
-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 022f1dd..4fec812 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 = '2022b'
-VERSION = '2022.2.1' # pip compatible version number.
+OLSON_VERSION = '2022d'
+VERSION = '2022.4' # 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 e797ce0..904aa83 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 = '2022.2.1'
-EXPECTED_OLSON_VERSION = '2022b'
+EXPECTED_VERSION = '2022.4'
+EXPECTED_OLSON_VERSION = '2022d'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'