diff --git a/.travis.yml b/.travis.yml index 6732f2cf3d..743dc56713 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,12 @@ before_install: - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - - conda create --yes -n gensim-test python=$TRAVIS_PYTHON_VERSION pip atlas numpy scipy + - conda create --yes -n gensim-test python=$TRAVIS_PYTHON_VERSION pip atlas numpy==1.11.3 scipy==0.18.1 - source activate gensim-test - python setup.py install - pip install .[test] script: + - pip freeze - python setup.py test - pip install flake8 - continuous_integration/travis/flake8_diff.sh diff --git a/appveyor.yml b/appveyor.yml index a68c3036e6..9a1463a9f7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -67,7 +67,7 @@ test_script: - "mkdir empty_folder" - "cd empty_folder" - "pip install pyemd testfixtures unittest2 sklearn Morfessor==2.0.2a4" - + - "pip freeze" - "python -c \"import nose; nose.main()\" -s -v gensim" # Move back to the project folder - "cd .." diff --git a/continuous_integration/appveyor/requirements.txt b/continuous_integration/appveyor/requirements.txt index 644465d9e6..2938812af1 100644 --- a/continuous_integration/appveyor/requirements.txt +++ b/continuous_integration/appveyor/requirements.txt @@ -8,7 +8,7 @@ # of the rackspace folder instead of trying to install from more recent # source tarball published on PyPI numpy==1.11.3 -scipy==0.19.0 +scipy==0.18.1 cython six >= 1.5.0 smart_open >= 1.2.1 diff --git a/setup.py b/setup.py index 1e88cb129d..2c7492cf0b 100644 --- a/setup.py +++ b/setup.py @@ -229,7 +229,7 @@ def finalize_options(self): test_env = [ 'testfixtures', 'unittest2', - 'Morfessor==2.0.2a4', + 'Morfessor == 2.0.2a4', 'scikit-learn', 'pyemd', 'annoy', @@ -289,7 +289,7 @@ def finalize_options(self): ], install_requires=[ 'numpy >= 1.11.3', - 'scipy >= 0.19.0', + 'scipy >= 0.18.1', 'six >= 1.5.0', 'smart_open >= 1.2.1', ],