Skip to content

Commit 32a1352

Browse files
committed
fix multiplatform build
1 parent 162cdc6 commit 32a1352

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/multi-platforms.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ jobs:
3131
shell: bash -l {0}
3232
run: |
3333
conda install pytest
34-
python setup.py develop
34+
python -m pip install --upgrade pip
35+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3536
git clone https://github.com/luk036/pylds
3637
cd pylds; python setup.py develop; cd ..
3738
git clone https://github.com/luk036/netoptim
3839
cd netoptim; python setup.py develop; cd ..
40+
python setup.py develop
3941
pytest

0 commit comments

Comments
 (0)