Skip to content
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
10 changes: 9 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14-dev']
python: ['3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
tox_env: ['py']
include:
Expand All @@ -53,6 +53,9 @@ jobs:
- python: '3.13'
os: ubuntu-latest
tox_env: 'build'
- python: '3.14-dev'
os: ubuntu-latest
tox_env: 'py'
exclude:
# macos-14 AKA macos-latest has switched to being an ARM runner, only supporting newer versions of Python
# https://github.com/actions/setup-python/issues/825#issuecomment-2096792396
Expand All @@ -78,6 +81,11 @@ jobs:
python-version: ${{ matrix.python }}
architecture: 'x64'
cache: 'pip'
- name: Install system dependencies (Linux only)
if: runner.os == 'Linux'
run: |
sudo apt-get update -qqq
sudo apt-get install -y libxml2-dev libxslt1-dev zlib1g-dev
- name: install dependencies
run: |
python -mpip install --progress-bar=off -r test-requirements.txt
Expand Down
Loading