Skip to content

Commit

Permalink
Address CI/CD feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
lysnikolaou committed Oct 15, 2024
1 parent b7b262e commit 57f02f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
strategy:
matrix:
pyver:
- "3.13-freethreading"
- 3.13-freethreading
- 3.13
- 3.12
- 3.11
Expand All @@ -165,9 +165,9 @@ jobs:
- os: windows
no-extensions: Y
- os: macos
pyver: "3.13-freethreading"
pyver: 3.13-freethreading # this is still tested within cibuildwheel
- os: windows
pyver: "3.13-freethreading"
pyver: 3.13-freethreading # this is still tested within cibuildwheel
include:
- pyver: pypy-3.8
no-extensions: Y
Expand Down Expand Up @@ -200,15 +200,14 @@ jobs:
path: dist

- name: Setup Python ${{ matrix.pyver }}
if: ${{ !endsWith(matrix.pyver, '-freethreading') }}
id: python-install
if: >-
!endsWith(matrix.pyver, '-freethreading')
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyver }}
allow-prereleases: true
- name: Setup Python ${{ matrix.pyver }}
if: endsWith(matrix.pyver, '-freethreading')
id: python-install-freethreading
uses: deadsnakes/[email protected]
with:
python-version: 3.13-dev
Expand Down
1 change: 1 addition & 0 deletions CHANGES/1015.packaging.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Started publishing wheels made for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.

0 comments on commit 57f02f8

Please sign in to comment.