Skip to content

Commit 2d818c9

Browse files
committed
Remove pre-release Python from test matrix
lxml does not publish pre-built wheels for pre-releases, and we don't want to bother with building them ourselves.
1 parent 68bced0 commit 2d818c9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ jobs:
99
max-parallel: 8
1010
matrix:
1111
os: [ubuntu-20.04, ubuntu-latest, macos-13, macos-latest]
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{matrix.python-version}}
18-
allow-prereleases: true
1918
- run: |
2019
if [[ $(uname) == Linux ]]; then sudo apt-get install --no-install-recommends python3-lxml python3-certifi; fi
2120
- run: make install

0 commit comments

Comments
 (0)