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.
This commit is contained in:
Justin Mayer 2013-08-08 12:08:30 -07:00
commit f2aef81c96

View file

@ -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': [