Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 517cebe2 authored by hhakim's avatar hhakim
Browse files

Choose a specific version of scipy in test_unix_purepy_pkg (fix macos scipy...

Choose a specific version of scipy in test_unix_purepy_pkg (fix macos scipy building error by using older wheel packages).
parent 4defe4fa
No related branches found
No related tags found
No related merge requests found
Pipeline #834136 skipped
...@@ -624,6 +624,7 @@ test_linux_pkg_release: ...@@ -624,6 +624,7 @@ test_linux_pkg_release:
- SYS=$(if uname -a | grep -q Darwin; then echo macosx; else echo linux; fi) - SYS=$(if uname -a | grep -q Darwin; then echo macosx; else echo linux; fi)
- $JOB_PYTHON -m pip install --upgrade pip - $JOB_PYTHON -m pip install --upgrade pip
- $JOB_PYTHON -m pip install matplotlib==3.5.3 # don't install the latest version because it fails to compile on some macos x versions - $JOB_PYTHON -m pip install matplotlib==3.5.3 # don't install the latest version because it fails to compile on some macos x versions
- $JOB_PYTHON -m pip install scipy==1.9.3 # version 1.10 of scipy fails to build on macosx
- $JOB_PYTHON -m pip install --upgrade build/wrapper/python/dist/${PYFAUST_PKG_NAME}-$CI_COMMIT_TAG-*$PYVER*$SYS*.whl - $JOB_PYTHON -m pip install --upgrade build/wrapper/python/dist/${PYFAUST_PKG_NAME}-$CI_COMMIT_TAG-*$PYVER*$SYS*.whl
- $JOB_PYTHON -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());" - $JOB_PYTHON -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
- $JOB_PYTHON -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'double')" - $JOB_PYTHON -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'double')"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment