Skip to content

Commit

Permalink
install correct pandapower version for tutorial test in Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jkisse committed Jul 17, 2023
1 parent 635aec2 commit dea4776
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/run_tests_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ jobs:
python -m pip install --upgrade pip
python -m pip install pytest nbmake pytest-xdist pytest-split python-igraph numba
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if ${{ matrix.python-version == '3.7' }};
then pip install pandapower==2.11.1;
else
python -m pip install git+https://github.com/e2nIEE/pandapower@develop#egg=pandapower
fi
pip install .
- name: List all installed packages
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run_tests_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@ jobs:
python -m pip install --upgrade pip
python -m pip install pytest nbmake pytest-xdist pytest-split python-igraph numba
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if ${{ matrix.python-version == '3.7' }};
then pip install pandapower==2.11.1;
else
python -m pip install git+https://github.com/e2nIEE/pandapower@master#egg=pandapower
fi
pip install .
- name: List all installed packages
run: |
Expand Down

0 comments on commit dea4776

Please sign in to comment.