From 62f872054dde69e5c510094093cd6e221d96d5db Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Wed, 31 Jul 2019 16:24:05 +0000 Subject: Bump version numbers to 2019.2/2019b --- 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 4d8f21d..dbae529 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 = '2019a' -VERSION = '2019.1' # pip compatible version number. +OLSON_VERSION = '2019b' +VERSION = '2019.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 85aae12..6430f4d 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.1' -EXPECTED_OLSON_VERSION = '2019a' +EXPECTED_VERSION = '2019.2' +EXPECTED_OLSON_VERSION = '2019b' fmt = '%Y-%m-%d %H:%M:%S %Z%z' -- cgit v1.2.1