Zipline -
As noted in your “Issues” the public release of Zipline is 0.7.0, while quantopian/zipline.git:zipline-master is at 0.8.x… While I think a updated public release is great I would actually like to access/build zipline.git:zipline-master in real time. My assumption is that the Master Branch is/should be a functional user space, though changing with merges addressing bug fixes and features.
The Problem:
Editing the meta.yml provided in zipline-master/conda/zipline make it easy to point `conda build zipline` to git_url:
https://github.com/quantopian/zipline.git to grab and build zipline, and it does. However, the build fails at `import numpy` (SOP…?) but more importantly, with numpy provided, the build proceeds without a problem until: `test` where it fails, and the `install` also fails functionally. In both cases it appears that the failure is because `install` does not copy/install various zipline folders/modules into the installed zipline module folder/environment; when python tries to import zipline, zipline is unable to find these supporting modules and that is that:
(e.g.,
import zipline
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/canopy/Desktop/zipline-master/zipline/__init__.py", line 26, in <module>
from . import finance
File "/Users/canopy/Desktop/zipline-master/zipline/finance/__init__.py", line 16, in <module>
from . import execution, trading
File "/Users/canopy/Desktop/zipline-master/zipline/finance/trading.py", line 26, in <module>
from zipline.assets import AssetFinder
File "/Users/canopy/Desktop/zipline-master/zipline/assets/__init__.py", line 16, in <module>
from ._assets import (
ImportError: No module named 'zipline.assets._assets'
)
Installing quantopian/zipline locally with `python setup.py install` has the same issue(s). Manually copying the missing module directories from zipline-master to the installed zipline directory appears to resolve the problem.
I presume that this is a basic install script issue… or am I missing something.
Thanks
David