Commit Graph

77 Commits

Author SHA1 Message Date
Eddie Hebert 8b16f7cfa0 Updates flake8 to latest in requirements txt.
Meant to go with previous flake8 changes.
2012-11-19 20:44:03 -05:00
Eddie Hebert 4c3e0d5081 Brings pandas up to the latest version, 0.9.0 -> 0.9.1 2012-11-15 23:31:46 -05:00
Eddie Hebert 8eecf25985 Removes unittest2 from dev installed packages.
We removed unittest2 from our test suites in favor of the builtin
unittest from Python 2.7+
2012-11-12 10:50:04 -05:00
Eddie Hebert 96ba4c7d6c Upgrades numpy package to latest. 1.6.1 -> 1.6.2 2012-11-05 10:36:49 -05:00
Eddie Hebert bb2811e101 Updates ipython to the latest. 0.12 -> 0.13.1 2012-11-05 10:32:28 -05:00
Eddie Hebert 7e7bf72d76 Updates Logbook package to latest. 0.3 -> 0.4 2012-11-05 10:22:13 -05:00
Eddie Hebert 332d12c7e2 Upgrades Cython package to latest. 0.15.1 -> 0.17.1 2012-11-05 10:18:12 -05:00
Eddie Hebert a81a9bbf27 Upgrades msgpack-python package to latest. 0.1.12 -> 0.2.2 2012-11-05 10:12:25 -05:00
Eddie Hebert 64a190821d Upgrades nose package to latest. 1.1.2 -> 1.2.1 2012-11-05 10:07:40 -05:00
Eddie Hebert aa659772b2 Updates pytz package to latest. 2011n -> 2012h 2012-11-05 10:04:25 -05:00
Eddie Hebert 18d4e61f00 Updates requests package. 0.14.1 -> 0.14.2 2012-11-05 10:01:49 -05:00
Eddie Hebert 7904773d00 Updates flake8 to latest.
The latest flake8 release in now 1.5, which pulls in pep8: 1.3.4a0

The upgrade pep8 has changes to what it picks up as lint.
Making code base compatible, so that new devs can install pep8
from PyPI and not have friction over the version difference.

Currently using these ignores in the config file:

```
[pep8]
ignore = E124,E125,E126
```

Ignoring these since they are difficult to squash while maintaining
an 80 char line length, and appear spurious.
Should address later.

Updates Travis config, README, and pip requirements to reflect change.
2012-10-22 11:57:16 -04:00
Eddie Hebert 0ab136f1c8 Adds a loader for market data when it doesn't exist locally.
Hopefully, this helps ease ramp up time for developing against
market data, without us distributing the data.

We do a check for the data when attempting to read the msgpack
files, if they don't exist the loader makes a web request and
retrieves and serializes the data for the user.

Provides a loader for:

- curves from data.treasury.gov
- benchmarks from Yahoo! Finance

Adds dependency of requests library in dev requirements.
2012-10-19 11:19:14 -04:00
Jonathan Kamens 7bc1e99ad8 Don't strip #.* from ends of lines
Revert e99ab2e9d07573e24e6d106877ff35eab46cdab1, which was intended to
strip comments from lines fed to pip, but had the unintended side
effect of stripping egg specifiers in URLs. The easiest way to address
this is to simply not put trailing comments in requirements files, so
we'er going to solve the problem that way instead.
2012-10-15 11:36:45 -04:00
Eddie Hebert a7e2accd05 Updates pandas to latest release version. 2012-10-12 16:52:10 -04:00
Jonathan Kamens 7c2bdb7b56 Strip comments from ends of lines before passing to pip 2012-10-11 10:57:27 -04:00
Eddie Hebert e6c2709151 Adds installation of flake8 linter to development installs. 2012-10-05 15:06:32 -04:00
Eddie Hebert 013ab86321 Adds ordered_pip script back in.
The pandas dependency on numpy was causing pandas installation to fail.
Reviving the ordered_pip script in since it helps explicitly install
numpy before pandas.
2012-10-05 14:58:38 -04:00
Eddie Hebert fd2d66f53e Removes unused library of messagepack. 2012-10-05 14:58:11 -04:00
Eddie Hebert a46273ed0f Removes documentation generation from jenkins.sh
The current documentation is not currently used actively.

Also, we are working towards not using Jenkins, in favor of
something like travis-ci when zipline is open sourced, so we will
have to be rethinking the documentation maintenance then.
2012-10-02 00:13:08 -04:00
Eddie Hebert 75d3578f04 Removes ordered_pip.sh script.
The ordered_pip script was needed to wrangle some dependency ordering
problems that do not exist with the reduced set of dependencies.
2012-10-01 13:38:32 -04:00
Eddie Hebert d176d12d65 Reduces the libraries specified in requirements to the minimal amount
needed to run unittests.

Building the libraries installed by default to as few as possible.

Removes pip run on removed requirements_sci.txt in CI script.
2012-10-01 13:37:53 -04:00
fawce 5e9edc02c4 moved pandas above statsmodels 2012-10-01 08:19:54 -04:00
fawce 5bea0c5cd1 moved pandas below everything 2012-10-01 08:19:17 -04:00
fawce f3f5883aa5 added mkvirtualenv command 2012-10-01 07:56:29 -04:00
fawce 44ba87ef01 cleaned up scientific install 2012-09-30 23:40:13 -04:00
fawce 483c223103 updating pandas to git commit for 0.9rc2 2012-09-30 23:30:24 -04:00
fawce fe8e107c59 dropping max drawdown, adding pytz to whitelist. 2012-09-14 16:00:13 -04:00
fawce 96e5801cf8 removed zmq from requirements files. 2012-09-08 23:24:53 -04:00
Jonathan Kamens d265a64696 Don't list setuptools or distribute in requirements.txt
There's no need to list setuptools or distribute in requirements.txt
because they are installed automatically when you create a new
virtualenv. Furthermore, listing them explicitly breaks if the version
you list is different from the virtualenv version.
2012-09-05 10:53:55 -04:00
Eddie Hebert dc4c9082e9 Removes cvxopt from pip installs.
It appears that cvxopt is uninstallable via pip in it's current state.
2012-08-29 14:36:10 -04:00
Thomas Wiecki 3a054786f8 Added cvxopt and scikit-learn to requirements. 2012-08-29 09:05:25 -04:00
Eddie Hebert 20db5dedb5 Removes unused package from requirements. 2012-08-24 00:07:13 -04:00
Eddie Hebert 2800c472b8 Removes unused package of psutil. 2012-08-24 00:05:58 -04:00
Jonathan Kamens f14c6c7077 Fix statsmodels version dependencies to make pip happy
Use statsmodels>=0.5.0 instead of statsmodels==0.5.0-tutorial-beta,
because although the latter is the download version listed in pypi, it
installs as 0.5.0, which means if we list that specific version as the
requirement, then pip reinstalls it every time launch.sh is run.
2012-08-23 17:27:00 -04:00
Jonathan Kamens 0a0f35a14e Make ordered_pip.sh more robust
Make ordered_pip.sh exit on error. Remove useless echo of empty
string. Fix counting of the number of packages installed. Ignore blank
lines in requirements file.
2012-08-23 17:25:58 -04:00
fawce 88c31e7a60 pip freeze reports statsmodels==0.5.0 ... actual version? 0.5.0-tutorial-beta 2012-08-22 19:28:16 -04:00
fawce 25c33b70c7 fixed pandas version specifier, reversed order of patsy 2012-08-22 17:21:32 -04:00
fawce e6be7d49f2 updated sci requirements to include statsmodels and latest pandas 2012-08-22 17:03:28 -04:00
fawce 90cf794952 added statsmodels and moved pandas forward 2012-08-22 16:33:52 -04:00
fawce 953b805bd8 added psutil to the requirements 2012-07-30 23:19:03 -04:00
fawce 3cff533ff9 hot patch to requirements 2012-07-30 17:42:53 -04:00
Thomas Wiecki 6f7090ebf3 Merge pull request #69 from quantopian/prof_yappi
Prof yappi
2012-07-20 05:49:23 -07:00
Stephen Diehl 9040bacd0b Temp fix for jenkins script. 2012-07-07 06:47:48 -04:00
Thomas Wiecki 2dd4bca9e2 Added yappi to requirements_dev.txt. 2012-06-29 09:55:27 -04:00
Stephen Diehl 1b2ac74dec Updated test config. 2012-06-12 07:42:35 -04:00
Stephen Diehl 20f7affc76 Added logbook to reqs. 2012-06-12 07:38:18 -04:00
Stephen Diehl 954ad8afb3 Added setproctitle and C extension doc. 2012-05-29 17:09:08 -04:00
Stephen Diehl 339daf9515 Uncommented scipy. 2012-05-28 11:17:07 -04:00
Stephen Diehl b574195a0d Added example c extension. 2012-05-27 21:22:16 -04:00