summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2019-10-07 03:12:25 +0000
committerStuart Bishop <stuart.bishop@canonical.com>2019-10-07 03:12:25 +0000
commit3db12139c6da6ae3fb2f6fb4988adc9db14e3838 (patch)
tree3f246418b07506f521f0a7703828ef493f460a2c
parent6870ec1a032a8200cf2557a298b3132c7e1bfc9f (diff)
downloadpytz-git-3db12139c6da6ae3fb2f6fb4988adc9db14e3838.tar.gz
Bump version numbers to 2019.3/2019crelease_2019.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 dbae529..723b55c 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 = '2019b'
-VERSION = '2019.2' # pip compatible version number.
+OLSON_VERSION = '2019c'
+VERSION = '2019.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 6430f4d..7d759af 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 = '2019.2'
-EXPECTED_OLSON_VERSION = '2019b'
+EXPECTED_VERSION = '2019.3'
+EXPECTED_OLSON_VERSION = '2019c'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'