summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'