Skip to content

Commit

Permalink
DEV: Added script for building all versions of zipline conda package
Browse files Browse the repository at this point in the history
  • Loading branch information
richafrank authored and Joe Jevnik committed Feb 25, 2016
1 parent 720e880 commit 88e4758
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions etc/conda_build_matrix.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from itertools import product
import os

py_versions = ('2.7', '3.4')
numpy_versions = ('1.9', '1.10')


def main():
for pair in product(py_versions, numpy_versions):
os.system('conda build conda/zipline -c quantopian '
'--python=%s --numpy=%s' % pair)


if __name__ == '__main__':
main()

0 comments on commit 88e4758

Please sign in to comment.