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 e28106a commit d376138Copy full SHA for d376138
.github/workflows/python-package-conda.yml
@@ -18,9 +18,12 @@ jobs:
18
run: |
19
# $CONDA is an environment variable pointing to the root of the miniconda directory
20
echo $CONDA/bin >> $GITHUB_PATH
21
+ - name: Pre-install numpy (build dependency)
22
+ run: |
23
+ pip install 'numpy>=1.19.5'
24
- name: Install current library and dependencies
25
- pip install -e .
26
+ pip install --no-build-isolation -e .
27
# - name: Lint with flake8
28
# run: |
29
# conda install flake8
0 commit comments