forked from github/pelican
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:
parent
d824b79a19
commit
f2aef81c96
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils',
|
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils',
|
||||||
'pytz', 'blinker', 'unidecode', 'six']
|
'pytz >= 0a', 'blinker', 'unidecode', 'six']
|
||||||
|
|
||||||
entry_points = {
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue