summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2023-03-29 15:19:46 +1100
committerStuart Bishop <stuart@stuartbishop.net>2023-03-29 15:19:46 +1100
commit0017b988bf8e1b41c2445a1f7acef0a5cc9eb29e (patch)
tree19ee395498328217ad149b899444c953e135ea1e
parent78dd05adb582180b1ff9ce6aefeae2b37a09fdae (diff)
downloadpytz-git-0017b988bf8e1b41c2445a1f7acef0a5cc9eb29e.tar.gz
Bump version numbers to 2023.3 / 2023crelease_2023.3
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 04a3423..6b47a9b 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -22,8 +22,8 @@ from pytz.tzfile import build_tzinfo
# The IANA (nee Olson) database is updated several times a year.
-OLSON_VERSION = '2023b'
-VERSION = '2023.2' # pip compatible version number.
+OLSON_VERSION = '2023c'
+VERSION = '2023.3' # 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 db74f8a..7d6d788 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -27,8 +27,8 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo # noqa
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION = '2023.2'
-EXPECTED_OLSON_VERSION = '2023b'
+EXPECTED_VERSION = '2023.3'
+EXPECTED_OLSON_VERSION = '2023c'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'