Skip to content

Commit

Permalink
testing python 3.12 linux wheels #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Nov 6, 2023
1 parent ccfd716 commit 9f8e7aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [3.7, 3.8, 3.9, '3.10', 3.11]
python_version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]

steps:
- name: Cloning SUMO
Expand All @@ -84,7 +84,7 @@ jobs:
- name: Configuring Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
python-version: ${{ matrix.python_version }}

- name: Preparing Python environment
run: |
Expand All @@ -108,7 +108,7 @@ jobs:
- name: Running libsumo tests
run: |
python -m pip install manylinux-wheels/sumolib-*.whl manylinux-wheels/traci-*.whl
PYTHON_VERSION=${{ matrix.python }}
PYTHON_VERSION=${{ matrix.python_version }}
python -m pip install manylinux-wheels/libsumo-*cp3${PYTHON_VERSION:2}*
cd tests
texttest -b ci -v ci -a complex.libsumo
Expand All @@ -122,7 +122,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@v3
with:
name: texttesttmp-${{ matrix.python }}
name: texttesttmp-${{ matrix.python_version }}
path: texttesttmp.zip
if-no-files-found: warn

Expand Down

0 comments on commit 9f8e7aa

Please sign in to comment.