From f2aef81c963c8daaa29ac28dba84243e6198c30f Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Thu, 8 Aug 2013 12:08:30 -0700 Subject: [PATCH] Work around pytz & pip 1.4+ problem. Fixes #996. The latest version of pip (1.4) no longer installs pre-release versions (alpha, beta, etc.) by default. Because pytz uses an unorthodox version number scheme, pip thinks it's a pre-release and skips it. This change to setup.py should alleviate the problem until it is otherwise resolved. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 69f76b3c..f56a7c41 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils', - 'pytz', 'blinker', 'unidecode', 'six'] + 'pytz >= 0a', 'blinker', 'unidecode', 'six'] entry_points = { 'console_scripts': [