Skip to content

Commit bdf608b

Browse files
committed
fix?
1 parent 8497cd5 commit bdf608b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
max-parallel: 4
1919
matrix:
20-
python-version: [2.7, 3.5, 3.6, 3.7]
20+
python-version: [3.5, 3.6, 3.7, 3.8]
2121

2222
steps:
2323
- uses: actions/checkout@v1
@@ -37,9 +37,11 @@ jobs:
3737
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3838
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3939
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
40+
- name: Install POT
41+
run: |
42+
pip install -e .
4043
- name: Run tests
4144
run: |
42-
pip install .
4345
python -m pytest -v test/ ot/ --doctest-modules --ignore ot/gpu/ --cov=ot
4446
- name: Upload codecov
4547
run: |

0 commit comments

Comments
 (0)