summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2009-10-28 12:40:23 +0700
committerStuart Bishop <stuart@stuartbishop.net>2009-10-28 12:40:23 +0700
commitcf38b59c1108202acb1fefba7fc36dcefd585c1b (patch)
tree2599f8f87f06fb2b25f8d6ff8ddd593894b27012
parentc8b248b0444ecb870590493ab5d425e7607eba2b (diff)
downloadpytz-cf38b59c1108202acb1fefba7fc36dcefd585c1b.tar.gz
Update version to 2009p
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index b8c27c1..21f4837 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -8,8 +8,8 @@ See the datetime section of the Python Library Reference for information
on how to use these modules.
'''
-# The Olson database has historically been updated about 4 times a year
-OLSON_VERSION = '2009n'
+# The Olson database is updated several times a year.
+OLSON_VERSION = '2009p'
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 d57e3dd..0d2dee1 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -15,7 +15,7 @@ from pytz import reference
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION='2009n'
+EXPECTED_VERSION='2009p'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'