summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2021-10-02 13:36:12 +1000
committerStuart Bishop <stuart@stuartbishop.net>2021-10-02 13:36:12 +1000
commit82bb1b714af11f418def285b544b419775a36566 (patch)
tree56918f5ec458a551af753732e2d50c5e532e2975
parent511c4765f085d6fce7ae0e71a249ae9021f2975d (diff)
downloadpytz-git-82bb1b714af11f418def285b544b419775a36566.tar.gz
Bump version numbers to 2021.3/2021crelease_2021.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 cee4e2d..50c5b55 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 = '2021b'
-VERSION = '2021.2' # pip compatible version number.
+OLSON_VERSION = '2021c'
+VERSION = '2021.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 54a4fde..a16c870 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 = '2021.2'
-EXPECTED_OLSON_VERSION = '2021b'
+EXPECTED_VERSION = '2021.3'
+EXPECTED_OLSON_VERSION = '2021c'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'