MAINT: Remove msgpack as a dependency.

Now that the data serialization uses pandas, msgpack is no longer
needed.
This commit is contained in:
Eddie Hebert
2013-10-01 14:28:11 -04:00
parent a66f45b598
commit b44fc20e4e
6 changed files with 1 additions and 8 deletions
-3
View File
@@ -56,8 +56,5 @@ docs/_build/*
# database of vbench
benchmarks.db
# downloaded data
zipline/data/*.msgpack
# Vagrant temp folder
.vagrant
-1
View File
@@ -67,7 +67,6 @@ Dependencies
* numpy (>= 1.6.0)
* pandas (>= 0.9.0)
* pytz
* msgpack-python
* Logbook
* blist
* requests
-1
View File
@@ -23,7 +23,6 @@ Dependencies
* numpy (>= 1.6.0)
* pandas (>= 0.9.0)
* pytz
* msgpack-python
* iso8601
* Logbook
* blist
-1
View File
@@ -1,4 +1,3 @@
msgpack-python==0.3.0
iso8601==0.1.4
# Logging
-1
View File
@@ -63,7 +63,6 @@ setup(
],
install_requires=[
'delorean',
'msgpack-python',
'iso8601',
'Logbook',
'blist',
+1 -1
View File
@@ -185,7 +185,7 @@ Fetching data from Yahoo Finance.
fp_tr = get_datafile('treasury_curves.csv', "rb")
except IOError:
print("""
data msgpacks aren't distributed with source.
data files aren't distributed with source.
Fetching data from data.treasury.gov
""").strip()
dump_treasury_curves()