summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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