Skip to content

Commit

Permalink
Update release.yml (e2nIEE#1930)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbolgaryn authored Apr 6, 2023
1 parent 440a1df commit cffe134
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest python-igraph pytest-split numba seaborn matplotlib plotly geopandas ortools xlsxwriter openpyxl cryptography psycopg2 matpowercaseframes
if ${{ matrix.python-version == '3.8' }}; then python -m pip install pypower; fi
if ${{ (matrix.python-version != '3.8' && matrix.python-version != '3.11') }}; then python -m pip install numba; fi
if ${{ matrix.python-version == '3.8' }}; then python -m pip install lightsim2grid; fi
if ${{ matrix.python-version == '3.10' }}; then python -m pip install lightsim2grid; fi
if ${{ (matrix.python-version == '3.8') }}; then python -m pip install pypower; fi
if ${{ ((matrix.python-version != '3.8') && (matrix.python-version != '3.11')) }}; then python -m pip install numba; fi
if ${{ (matrix.python-version == '3.8') }}; then python -m pip install lightsim2grid; fi
if ${{ (matrix.python-version == '3.10') }}; then python -m pip install lightsim2grid; fi
- name: Install Julia
if: ${{ matrix.python-version == '3.8' }}
if: ${{ (matrix.python-version == '3.8') }}
run: |
./.install_julia.sh 1.5
pip install julia
Expand All @@ -103,7 +103,7 @@ jobs:
run: |
pip install --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple pandapower
- name: Install pandapower from PyPI
if: ${{ inputs.upload_server == 'pypi'}}
if: ${{ (inputs.upload_server == 'pypi')}}
run: |
pip install pandapower
- name: List all installed packages
Expand Down

0 comments on commit cffe134

Please sign in to comment.