diff options
author | Stan Seibert <stan@mtrr.org> | 2011-11-17 13:50:03 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2021-05-09 08:42:38 -0700 |
commit | 20d70f5064083925680abf6b93f4ff9442f4cb32 (patch) | |
tree | 90c433142e4843ceb58a6d067cb27fff2d4cb9bb | |
parent | 14424a5788ed92f59d00082829baca1f8026c3b2 (diff) | |
download | chroma-20d70f5064083925680abf6b93f4ff9442f4cb32.tar.gz chroma-20d70f5064083925680abf6b93f4ff9442f4cb32.tar.bz2 chroma-20d70f5064083925680abf6b93f4ff9442f4cb32.zip |
Require pyublas at setup-time for compiling. Adjust numpy requirement for count_nonzero().
-rw-r--r-- | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -40,9 +40,10 @@ setup( extra_link_args=geant4_libs, libraries=['boost_python']), ], - + + setup_requires = ['pyublas'], install_requires = ['uncertainties','pyzmq-static','spnav', 'pycuda', - 'numpy>1.6', 'pygame'], + 'numpy>=1.6','pygame'], test_suite = 'nose.collector', ) |