summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2013-03-15 00:55:00 +0700
committerStuart Bishop <stuart@stuartbishop.net>2013-03-15 00:55:00 +0700
commit27c779ffe3cc49a35fd3e9767e2803368a89ee5f (patch)
tree410c440bb7ea13bb8b0ca789e77f9175cd678d87
parent77af0262e81912e92e6bd8f018614d95380fbaa6 (diff)
downloadpytz-27c779ffe3cc49a35fd3e9767e2803368a89ee5f.tar.gz
Bump version numbersrelease_2013b
-rw-r--r--src/pytz/__init__.py2
-rw-r--r--src/pytz/tests/test_tzinfo.py2
-rw-r--r--src/setup.py1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index df80f44..2b1ea0e 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,7 +9,7 @@ on how to use these modules.
'''
# The Olson database is updated several times a year.
-OLSON_VERSION = '2012j'
+OLSON_VERSION = '2013b'
VERSION = OLSON_VERSION
# Version format for a patch release - only one so far.
#VERSION = OLSON_VERSION + '.2'
diff --git a/src/pytz/tests/test_tzinfo.py b/src/pytz/tests/test_tzinfo.py
index 8838972..5fcb081 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -21,7 +21,7 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION='2012j'
+EXPECTED_VERSION='2013b'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'
diff --git a/src/setup.py b/src/setup.py
index c8152d5..2e6adef 100644
--- a/src/setup.py
+++ b/src/setup.py
@@ -5,6 +5,7 @@ pytz setup script
import pytz, sys, os, os.path
try:
+ import setuptools.command
from setuptools import setup
except ImportError:
from distutils.core import setup