Skip to content

Commit 789b80f

Browse files
committed
Explicitly install dependencies
It is very buggy if we let setuptools do it for some reason, so have this as an explicit step instead.
1 parent 06e61fa commit 789b80f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ jobs:
2121
uses: actions/setup-python@v2
2222
with:
2323
python-version: ${{ matrix.python-version }}
24-
- name: Install dependencies
24+
- name: Update pip and setuptools
2525
run: |
2626
python -m pip install --upgrade pip
2727
python -m pip install setuptools
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install -e .
2831
python -m pip install -r test-requirements.txt
2932
- name: Install old numpy
3033
run: |

0 commit comments

Comments
 (0)