We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aba2876 commit 4396163Copy full SHA for 4396163
.github/workflows/pythonpackage.yml
@@ -79,7 +79,12 @@ jobs:
79
python -m venv /tmp/setup_develop
80
source /tmp/setup_develop/bin/activate
81
python -m pip install "${{ matrix.pip }}" "${{ matrix.setuptools }}"
82
- python -m pip install numpy scipy "Cython >= 0.28.5" # sklearn needs this
+ # sklearn needs these dependencies
83
+ if [ "${{ matrix.python-version }}" == "3.6" ]; then
84
+ python -m pip install "numpy < 1.20" scipy "Cython >= 0.28.5" # numpy 1.20 drops Py3.6
85
+ else
86
+ python -m pip install numpy scipy "Cython >= 0.28.5"
87
+ fi
88
python -m pip install scikit-learn # otherwise it attempts to build it
89
python setup.py develop
90
INSTALLED_VERSION=$(python -c 'import dmriprep; print(dmriprep.__version__, end="")')
0 commit comments