Skip to content

Commit

Permalink
Add new Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
miso-belica committed Feb 24, 2024
1 parent 4b51c84 commit 73f3e9b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10", "graalpy-23.1"]
include:
# - os: "windows-2022"
# python-version: "3.10"
Expand All @@ -46,6 +46,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: "Install lxml dev dependencies"
if: ${{ startsWith(matrix.python-version, 'graalpy') }}
run: sudo apt-get install libxml2-dev libxslt-dev python3-dev

- name: "Install dependencies"
run: |
python -m pip install --upgrade pip wheel setuptools
Expand Down

0 comments on commit 73f3e9b

Please sign in to comment.