We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2e48d commit 10f3c90Copy full SHA for 10f3c90
.github/workflows/package.yml
@@ -54,9 +54,12 @@ jobs:
54
python-version: ${{ matrix.python-version }}
55
allow-prereleases: true
56
cache: pip
57
- - name: tox-gh workaround for freethreaded
58
- if: ${{ matrix.python-version == '3.14t' }}
+ - name: tox-gh workaround for freethreaded(!windows)
+ if: ${{ runner.os != 'Windows' && matrix.python-version == '3.14t' }}
59
run: echo "TOX_GH_MAJOR_MINOR=3.14t" >> $GITHUB_ENV
60
+ - name: tox-gh workaround for freethreaded(windows)
61
+ if: ${{ runner.os == 'Windows' && matrix.python-version == '3.14t' }}
62
+ run: echo "TOX_GH_MAJOR_MINOR=3.14t" >> $env:GITHUB_ENV
63
- name: Install dependencies
64
run: |
65
python3 -m pip install 'tox' 'tox-gh'
0 commit comments