summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart.bishop@canonical.com>2017-10-30 14:19:19 +0000
committerStuart Bishop <stuart.bishop@canonical.com>2017-10-30 14:19:19 +0000
commitb4dfd2cc2099185d8bf507592bc4ff8d50cfaa6c (patch)
treea1df94e49ee04580f14c686662670c99d5e5ff7d
parent136f7169af36ae56369b0d18f0cc3e77a9291dad (diff)
downloadpytz-git-release_2017.3.tar.gz
Bump revision numbers to 2017.3/2017crelease_2017.3
-rw-r--r--Makefile2
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index c1e9a36..c3aa6cb 100644
--- a/Makefile
+++ b/Makefile
@@ -53,7 +53,7 @@ wheels:
upload: sign
cd build/dist && ${PYTHON3} setup.py register
- twine upload build/tarballs/*.{egg,whl,zip,bz2,gz,asc}
+ twine upload build/tarballs/*.{egg,whl,gz,asc}
sign: dist
rm -f build/tarballs/*.asc
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 97c4883..24ad55b 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,8 +9,8 @@ on how to use these modules.
'''
# The IANA (nee Olson) database is updated several times a year.
-OLSON_VERSION = '2017b'
-VERSION = '2017.2' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2017c'
+VERSION = '2017.3' # Switching to pip compatible version numbering.
__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 3166322..106b344 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -21,8 +21,8 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION='2017.2'
-EXPECTED_OLSON_VERSION='2017b'
+EXPECTED_VERSION='2017.3'
+EXPECTED_OLSON_VERSION='2017c'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'