Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5c46c3a

Browse filesBrowse files
authored
no-issue: Improve CI for free-threading (#336)
1 parent 4f17004 commit 5c46c3a
Copy full SHA for 5c46c3a

File tree

Expand file treeCollapse file tree

1 file changed

+3
-5
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-5
lines changed

‎.github/workflows/main.yml

Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+3-5Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
- os: ubuntu-latest
3232
python: "3.13-dev"
3333
experimental: true
34-
build: ''
3534
- os: ubuntu-latest
3635
python: "3.13-dev"
3736
experimental: true
@@ -40,18 +39,15 @@ jobs:
4039
- os: ubuntu-latest
4140
python: pypy-3.10
4241
experimental: false
43-
build: ''
4442
- os: ubuntu-latest
4543
python: pypy-3.9
4644
experimental: false
47-
build: ''
4845
- os: macos-latest
4946
python: "3.12"
5047
experimental: true
5148
- os: windows-latest
5249
python: "3.12"
5350
experimental: true
54-
build: ''
5551
steps:
5652
- uses: actions/checkout@v4
5753
- name: Set up Python ${{ matrix.python }}
@@ -72,7 +68,9 @@ jobs:
7268
python -m pip install --upgrade pip setuptools
7369
python -m pip install -e .
7470
- name: Display Python version
75-
run: python --version --version
71+
run: |
72+
python -VV
73+
python -c 'import sysconfig; print("Free threading?", "Yes" if sysconfig.get_config_var("Py_GIL_DISABLED") else "No")'
7674
- name: Run Tests
7775
id: pyperformance
7876
run: python -u -m pyperformance.tests

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.