Skip to content

Commit

Permalink
no-issue: Improve CI for free-threading (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed May 17, 2024
1 parent 4f17004 commit 5c46c3a
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
- os: ubuntu-latest
python: "3.13-dev"
experimental: true
build: ''
- os: ubuntu-latest
python: "3.13-dev"
experimental: true
Expand All @@ -40,18 +39,15 @@ jobs:
- os: ubuntu-latest
python: pypy-3.10
experimental: false
build: ''
- os: ubuntu-latest
python: pypy-3.9
experimental: false
build: ''
- os: macos-latest
python: "3.12"
experimental: true
- os: windows-latest
python: "3.12"
experimental: true
build: ''
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
Expand All @@ -72,7 +68,9 @@ jobs:
python -m pip install --upgrade pip setuptools
python -m pip install -e .
- name: Display Python version
run: python --version --version
run: |
python -VV
python -c 'import sysconfig; print("Free threading?", "Yes" if sysconfig.get_config_var("Py_GIL_DISABLED") else "No")'
- name: Run Tests
id: pyperformance
run: python -u -m pyperformance.tests
Expand Down

0 comments on commit 5c46c3a

Please sign in to comment.