From 8c73ebde48dd7119b37c7a0fc62cdbd86f5716ab Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Sat, 25 Mar 2023 19:21:12 +1100 Subject: [PATCH] Bump version numbers to 2023.2 and 2023b --- 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 b1d6d55..04a3423 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 = '2022g' -VERSION = '2022.7.1' # pip compatible version number. +OLSON_VERSION = '2023b' +VERSION = '2023.2' # 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 48f51b1..db74f8a 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.7.1' -EXPECTED_OLSON_VERSION = '2022g' +EXPECTED_VERSION = '2023.2' +EXPECTED_OLSON_VERSION = '2023b' fmt = '%Y-%m-%d %H:%M:%S %Z%z'