From 00ad7f15b9d61ec6151255ff00283f79e93dc81e Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Fri, 31 Jan 2025 12:04:41 +1100 Subject: [PATCH] Bump version numbers to 2025.1 / 2025a --- 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 628ed3d3..075bee56 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 = '2024b' -VERSION = '2024.2' # pip compatible version number. +OLSON_VERSION = '2025a' +VERSION = '2025.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 e064ab3c..fef3e864 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 = '2024.2' -EXPECTED_OLSON_VERSION = '2024b' +EXPECTED_VERSION = '2025.1' +EXPECTED_OLSON_VERSION = '2025a' fmt = '%Y-%m-%d %H:%M:%S %Z%z'