Skip to content

Commit 10f3c90

Browse files
committed
apply the tox-gh workaround for windows too
1 parent 8f2e48d commit 10f3c90

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ jobs:
5454
python-version: ${{ matrix.python-version }}
5555
allow-prereleases: true
5656
cache: pip
57-
- name: tox-gh workaround for freethreaded
58-
if: ${{ matrix.python-version == '3.14t' }}
57+
- name: tox-gh workaround for freethreaded(!windows)
58+
if: ${{ runner.os != 'Windows' && matrix.python-version == '3.14t' }}
5959
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
6063
- name: Install dependencies
6164
run: |
6265
python3 -m pip install 'tox' 'tox-gh'

0 commit comments

Comments
 (0)