Skip to content

Commit 1b8b43e

Browse files
committed
test
1 parent e5889f8 commit 1b8b43e

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.github/workflows/hyphen-ranges.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
uses: priyagupta108/setup-python@test-pr-973
2222
with:
2323
python-version: ${{ matrix.python-version }}
24+
freethreaded: true
2425
- name: Install dependencies
2526
run: |
2627
python -m pip install --upgrade pip

.github/workflows/ranges.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: priyagupta108/setup-python@test-pr-973
2424
with:
2525
python-version: ${{ matrix.python-version }}
26+
freethreaded: true
2627
- name: Install dependencies
2728
run: |
2829
python -m pip install --upgrade pip

.github/workflows/x-ranges.yml

+23
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ on:
66
- python-freethreaded-test
77

88
jobs:
9+
test-with-t:
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
os: [ubuntu-latest]
15+
python-version:
16+
- '3.xt'
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Set up Python ${{ matrix.python-version }}
20+
# uses: actions/setup-python@v5
21+
uses: priyagupta108/setup-python@test-pr-973
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
check-latest: true
25+
freethreaded: true
26+
- name: Install dependencies
27+
run: |
28+
python -m pip install --upgrade pip
29+
pip install -r requirements.txt
30+
31+
932
test-freethreaded-true:
1033
runs-on: ${{ matrix.os }}
1134
strategy:

0 commit comments

Comments
 (0)