Skip to content

Commit

Permalink
python version is not mandatory anymore with abi
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaudier committed Sep 5, 2024
1 parent e4975a9 commit aa1b06e
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -364,15 +364,9 @@ jobs:
- name: Run tests
shell: bash {0}
run: |
if [[ ${{ matrix.python-version }} == "3.8" ]]; then
export PYTHONFOLDER="cp38-cp38"
elif [[ ${{ matrix.python-version }} == "3.9" ]]; then
export PYTHONFOLDER="cp39-cp39"
elif [[ ${{ matrix.python-version }} == "3.10" ]]; then
export PYTHONFOLDER="cp310-cp310"
if [[ ${{ matrix.python-version }} == "3.10" ]]; then
pip install --pre itk
elif [[ ${{ matrix.python-version }} == "3.11" ]]; then
export PYTHONFOLDER="cp311-cp311"
pip install --pre itk
fi
if [[ ${{ matrix.os }} == "ubuntu-latest" ]]; then
Expand All @@ -393,7 +387,7 @@ jobs:
pip install SimpleITK
pip install gaga_phsp==0.7.2
pip install spekpy
pip install dist/opengate_core-*-${PYTHONFOLDER}-${OSNAME}*_${PLATFORM}64.whl
pip install dist/opengate_core-*-${OSNAME}*_${PLATFORM}64.whl
pip install dist/opengate-*.whl
export GIT_SSL_NO_VERIFY=1
if [[ ${{ matrix.os }} == "ubuntu-latest" ]]; then
Expand Down

0 comments on commit aa1b06e

Please sign in to comment.