Explicitly install dependencies
It is very buggy if we let setuptools do it for some reason, so have this as an explicit step instead.
This commit is contained in:
parent
06e61fa4cc
commit
789b80f719
|
|
@ -21,10 +21,13 @@ jobs:
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install dependencies
|
- name: Update pip and setuptools
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install setuptools
|
python -m pip install setuptools
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install -e .
|
||||||
python -m pip install -r test-requirements.txt
|
python -m pip install -r test-requirements.txt
|
||||||
- name: Install old numpy
|
- name: Install old numpy
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue