mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-30 23:09:41 +08:00
913fbb0568
based OrderedDict. Series/ndarray can only be sped up so much because they weren't designed for fast iterative mutations. This also cut down on the # of intermediate Series being generated during perf stat generation. Things like s[s > 0] will create a new Series for s > 0. Moved cython to requirements.txt and added cyordereddict
35 lines
673 B
Plaintext
35 lines
673 B
Plaintext
# Testing
|
|
nose==1.3.3
|
|
nose-parameterized==0.3.3
|
|
nose-ignore-docstring==0.2
|
|
xlrd==0.9.3
|
|
mock==1.0.1
|
|
|
|
# Linting
|
|
|
|
flake8==2.1.0
|
|
mccabe==0.2.1
|
|
pep8==1.5.7
|
|
pyflakes==0.8.1
|
|
|
|
# Documentation Conversion
|
|
|
|
pyandoc==0.0.1
|
|
docopt==0.6.2
|
|
numpydoc==0.5
|
|
mistune==0.5
|
|
|
|
# Example scripts that are run during unit tests use the following:
|
|
|
|
matplotlib==1.3.1
|
|
# tornado and pyparsing are required by matplotlib
|
|
tornado==3.2.1
|
|
pyparsing==2.0.2
|
|
|
|
Markdown==2.4.1
|
|
|
|
# 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
|