Skip to content

Commit

Permalink
Remove pre-release Python from test matrix
Browse files Browse the repository at this point in the history
lxml does not publish pre-built wheels for pre-releases, and we don't want to bother with building them ourselves.
  • Loading branch information
kislyuk committed Jan 2, 2025
1 parent 68bced0 commit 2d818c9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ jobs:
max-parallel: 8
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-13, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
allow-prereleases: true
- run: |
if [[ $(uname) == Linux ]]; then sudo apt-get install --no-install-recommends python3-lxml python3-certifi; fi
- run: make install
Expand Down

0 comments on commit 2d818c9

Please sign in to comment.