Skip to content
Draft
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ jobs:
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true
- name: Test suite with py314t-ubuntu, mypyc-compiled
python: '3.14t'
os: ubuntu-24.04-arm
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true
- name: Test suite with py314-windows-64
python: '3.14'
os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-r build-requirements.txt
attrs>=18.0
filelock>=3.3.0,<3.20.0 # latest version is not available on 3.9 that we still support
lxml>=5.3.0; python_version<'3.15'
lxml>=5.3.0; python_version<'3.14' # lxml doesn't ship wheels for cp314t yet
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be updated if PEP 780 get's accepted. It's still a draft though at the moment.
https://peps.python.org/pep-0780/#examples

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hopefully lxml will have a free-threaded release out soon. My next task today is to run the lxml tests under TSan to hopefully validate a final set of fixes.

psutil>=4.0
pytest>=8.1.0
pytest-xdist>=1.34.0
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ iniconfig==2.1.0
# via pytest
librt==0.2.3
# via -r mypy-requirements.txt
lxml==6.0.2 ; python_version < "3.15"
lxml==6.0.2 ; python_version < "3.14"
# via -r test-requirements.in
mypy-extensions==1.1.0
# via -r mypy-requirements.txt
Expand Down
Loading