diff options
author | Stuart Bishop <stuart@stuartbishop.net> | 2010-05-18 14:16:01 +0700 |
---|---|---|
committer | Stuart Bishop <stuart@stuartbishop.net> | 2010-05-18 14:16:01 +0700 |
commit | 9f40dcf4721c6fc0f1d12a87c3d9a5a333537c3b (patch) | |
tree | 2d31b2670d05e9b9ef8c8813d9c1c15134805f5f | |
parent | 2150c840f5444faf6caf82497f493868aaf31284 (diff) | |
download | pytz-9f40dcf4721c6fc0f1d12a87c3d9a5a333537c3b.tar.gz |
Bump pytz revision numbers
-rw-r--r-- | src/pytz/__init__.py | 2 | ||||
-rw-r--r-- | src/pytz/tests/test_tzinfo.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py index 13665b6..f6558a6 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 = '2010h' +OLSON_VERSION = '2010j' 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 09b0da7..8ad9991 100644 --- a/src/pytz/tests/test_tzinfo.py +++ b/src/pytz/tests/test_tzinfo.py @@ -16,7 +16,7 @@ from pytz.tzinfo import StaticTzInfo # I test for expected version to ensure the correct version of pytz is # actually being tested. -EXPECTED_VERSION='2010h' +EXPECTED_VERSION='2010j' fmt = '%Y-%m-%d %H:%M:%S %Z%z' |