Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new Python versions #212

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ jobs:
- run: ruff check --output-format=github .

tests:
timeout-minutes: 10
timeout-minutes: 20
strategy:
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"]
include:
# - os: "ubuntu-latest"
# python-version: "pypy3.10" Failed to build JPype1
# - os: "ubuntu-latest"
# python-version: "graalpy-23.1" Failed to build JPype1
# - os: "windows-2022"
# python-version: "3.10"
- os: "macos-latest"
Expand All @@ -46,6 +50,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