mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-19 11:22:06 +08:00
In d01e718373, we made a change for
compatibility with a change introduced in pip 7.0.0. Then the pip
maintainers went and reverted the change in pip 7.0.2, thereby
breaking our requirements file for the second time in ten days. This
change reverts the prior change so that we are once again compatible
with the current version of pip.
Also, to make it easier for people to avoid pip compatibility issues,
we're now specifying pip>=7.0.3 in etc/requirements.txt.
41 lines
913 B
Plaintext
41 lines
913 B
Plaintext
# Testing
|
|
nose==1.3.6
|
|
nose-parameterized==0.3.5
|
|
nose-ignore-docstring==0.2
|
|
-e git://github.com/python-excel/xlrd.git@b9239bf2bfc42e088dd2a75c22164757cca9cc4f#egg=xlrd-master
|
|
mock==1.0.1
|
|
|
|
# Linting
|
|
|
|
flake8==2.4.1
|
|
mccabe==0.3
|
|
# Note: Old version of pep8 required by flake8 2.4.0
|
|
pep8==1.5.7
|
|
pyflakes==0.8.1
|
|
|
|
# Documentation Conversion
|
|
|
|
pyandoc==0.0.1
|
|
docopt==0.6.2
|
|
numpydoc==0.5
|
|
mistune==0.5.1
|
|
|
|
# Example scripts that are run during unit tests use the following:
|
|
|
|
# Required by tornado
|
|
backports.ssl-match-hostname==3.4.0.2;python_version<'3.0'
|
|
certifi==2015.4.28
|
|
|
|
# tornado and pyparsing are required by matplotlib
|
|
tornado==4.1
|
|
pyparsing==2.0.3
|
|
|
|
matplotlib==1.4.3
|
|
|
|
Markdown==2.6.2
|
|
|
|
# This --allow syntax is for compatibility with pip >= 1.5
|
|
# However, this is backwards incompatible change, since previous
|
|
# versions of pip do not support that flag.
|
|
--allow-external TA-Lib --allow-unverified TA-Lib TA-Lib==0.4.8
|