From 4ebc28de7d31a80497e0bbc08042a81c8f3e591d Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Tue, 1 Nov 2022 10:53:00 +1100 Subject: [PATCH] Bump version numbers to 2022.6 / 2022f --- src/pytz/__init__.py | 4 ++-- src/pytz/tests/test_tzinfo.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py index 8a89a82..d9da12e 100644 --- a/src/pytz/__init__.py +++ b/src/pytz/__init__.py @@ -22,8 +22,8 @@ # The IANA (nee Olson) database is updated several times a year. -OLSON_VERSION = '2022e' -VERSION = '2022.5' # pip compatible version number. +OLSON_VERSION = '2022f' +VERSION = '2022.6' # 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 dee57be..70914ee 100644 --- a/src/pytz/tests/test_tzinfo.py +++ b/src/pytz/tests/test_tzinfo.py @@ -27,8 +27,8 @@ # I test for expected version to ensure the correct version of pytz is # actually being tested. -EXPECTED_VERSION = '2022.5' -EXPECTED_OLSON_VERSION = '2022e' +EXPECTED_VERSION = '2022.6' +EXPECTED_OLSON_VERSION = '2022f' fmt = '%Y-%m-%d %H:%M:%S %Z%z'