We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ad528 commit 823a96eCopy full SHA for 823a96e
1 file changed
.github/workflows/tests.yaml
@@ -46,15 +46,21 @@ jobs:
46
- '3.11'
47
- '3.12'
48
- '3.13'
49
+ - '3.13t'
50
+ - '3.14'
51
steps:
52
- name: Checkout
53
uses: actions/checkout@v4
54
- name: Set up Python ${{ matrix.python-version }}
55
uses: actions/setup-python@v5
56
with:
57
python-version: ${{ matrix.python-version }}
58
+ allow-prereleases: true # needed for 3.14
59
- name: Append GitHub Actions system path
60
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
61
+ - name: Keep the GIL disabled with free-threaded Python
62
+ if: endsWith(matrix.python-version, 't')
63
+ run: echo "PYTHON_GIL=0" >> $GITHUB_ENV
64
- run: pip install coverage
65
- run: pip install .
66
# https://github.com/AndreMiras/coveralls-python-action/issues/18
0 commit comments