Skip to content

Commit

Permalink
Update release.yml (e2nIEE#1971)
Browse files Browse the repository at this point in the history
bump up python version for julia
  • Loading branch information
rbolgaryn authored Apr 12, 2023
1 parent c31bb6d commit 53c87d0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,17 +101,17 @@ jobs:
- name: Install specific dependencies (Windows)
if: matrix.os == 'windows-latest'
run: |
if ( '${{ matrix.python-version }}' -eq '3.8' ) { python -m pip install pypower }
if ( '${{ matrix.python-version }}' -ne '3.8' -and '${{ matrix.python-version }}' -ne '3.11' ) { python -m pip install numba }
if ( '${{ matrix.python-version }}' -eq '3.8' -or '${{ matrix.python-version }}' -eq '3.10' ) { python -m pip install lightsim2grid }
if ( '${{ matrix.python-version }}' -eq '3.9' ) { python -m pip install pypower }
if ( '${{ matrix.python-version }}' -ne '3.9' -and '${{ matrix.python-version }}' -ne '3.11' ) { python -m pip install numba }
if ( '${{ matrix.python-version }}' -eq '3.9' -or '${{ matrix.python-version }}' -eq '3.10' ) { python -m pip install lightsim2grid }
- name: Install specific dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
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' || matrix.python-version == '3.10' }}; then python -m pip install lightsim2grid; fi
if ${{ matrix.python-version == '3.9' }}; then python -m pip install pypower; fi
if ${{ matrix.python-version != '3.9' && matrix.python-version != '3.11' }}; then python -m pip install numba; fi
if ${{ matrix.python-version == '3.9' || 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.9'
run: |
./.install_julia.sh 1.8
pip install julia
Expand Down

0 comments on commit 53c87d0

Please sign in to comment.