From b8379447ba3db1f95698ba0f26ff91eadcff47bf Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Sat, 14 Jan 2023 23:18:47 +1100 Subject: [PATCH] Bump version numbers to 2022.7.1 and 2022g Patch release --- src/pytz/__init__.py | 2 +- src/pytz/tests/test_tzinfo.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py index b543ef8..b1d6d55 100644 --- a/src/pytz/__init__.py +++ b/src/pytz/__init__.py @@ -23,7 +23,7 @@ # The IANA (nee Olson) database is updated several times a year. OLSON_VERSION = '2022g' -VERSION = '2022.7' # pip compatible version number. +VERSION = '2022.7.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 cb8b47b..48f51b1 100644 --- a/src/pytz/tests/test_tzinfo.py +++ b/src/pytz/tests/test_tzinfo.py @@ -27,7 +27,7 @@ # I test for expected version to ensure the correct version of pytz is # actually being tested. -EXPECTED_VERSION = '2022.7' +EXPECTED_VERSION = '2022.7.1' EXPECTED_OLSON_VERSION = '2022g' fmt = '%Y-%m-%d %H:%M:%S %Z%z'