From ee2e37b6ae386299ad6a01fbcdc44af5f3739e9c Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Mon, 29 Jan 2024 13:29:11 +1100 Subject: [PATCH] Bump version to 2023.4 (2023d) --- 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 612837d..473950b 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 = '2023c' -VERSION = '2023.3.post1' # pip compatible version number. +OLSON_VERSION = '2023d' +VERSION = '2023.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 28eb054..519840d 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 = '2023.3.post1' -EXPECTED_OLSON_VERSION = '2023c' +EXPECTED_VERSION = '2023.4' +EXPECTED_OLSON_VERSION = '2023d' fmt = '%Y-%m-%d %H:%M:%S %Z%z'