]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Bumped version requirement on pytz
authorChris <chrisbrake@users.noreply.github.com>
Mon, 18 Jun 2018 20:43:32 +0000 (14:43 -0600)
committerAarni Koskela <akx@iki.fi>
Tue, 19 Jun 2018 07:21:58 +0000 (10:21 +0300)
Here you use the utc attribute on the _pytz object: https://github.com/python-babel/babel/blob/23ca4bf2b187748e5e8372c6dae541fbcc5fbe5d/babel/util.py#L304

Which was added in this commit https://github.com/stub42/pytz/commit/ae82fbc71b374a5a5b32bf3bbb38ebb97af6e715

Added the corrected version requirement for it's appearance

setup.py

index 8e268e16be196f37b7ad5d31ac46a263d9cdc319..27c7541bbb9bde49f02560dfcda4e5a08d081f94 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -61,7 +61,7 @@ setup(
         # This version identifier is currently necessary as
         # pytz otherwise does not install on pip 1.4 or
         # higher.
-        'pytz>=0a',
+        'pytz>=2015.7',
     ],
 
     cmdclass={'import_cldr': import_cldr},