File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
continuous_integration/appveyor Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,12 @@ build: false
6464test_script :
6565 # Change to a non-source folder to make sure we run the tests on the
6666 # installed library.
67- - " %CMD_IN_ENV% pip install --timeout=60 --trusted-host 28daf2247a33ed269873-7b1aad3fab3cc330e1fd9d109892382a.r6.cf2.rackcdn.com .[test]"
6867 - " mkdir empty_folder"
6968 - " cd empty_folder"
7069 - " pip install pyemd testfixtures unittest2 sklearn Morfessor==2.0.2a4"
7170
72- - " python -c \" import nose; nose.main()\" -s -v gensim"
71+ # Use run instead of main to avoid nnz code when fail (TODO: remove this)
72+ - " python -c \" import nose; nose.run()\" -s -v gensim"
7373 # Move back to the project folder
7474 - " cd .."
7575
Original file line number Diff line number Diff line change 77# fix the versions of numpy to force the use of numpy and scipy to use the whl
88# of the rackspace folder instead of trying to install from more recent
99# source tarball published on PyPI
10- numpy == 1.9 .3
10+ numpy == 1.11 .3
1111scipy == 0.19.0
1212cython
1313six >= 1.5.0
Original file line number Diff line number Diff line change @@ -285,11 +285,11 @@ def finalize_options(self):
285285
286286 test_suite = "gensim.test" ,
287287 setup_requires = [
288- 'numpy >= 1.3'
288+ 'numpy >= 1.11. 3'
289289 ],
290290 install_requires = [
291- 'numpy >= 1.3' ,
292- 'scipy >= 0.7 .0' ,
291+ 'numpy >= 1.11. 3' ,
292+ 'scipy >= 0.19 .0' ,
293293 'six >= 1.5.0' ,
294294 'smart_open >= 1.2.1' ,
295295 ],
You can’t perform that action at this time.
0 commit comments