From fe141b49be47be6c824046778eaba4090e815c55 Mon Sep 17 00:00:00 2001 From: Lysandros Nikolaou Date: Tue, 15 Oct 2024 15:27:51 +0200 Subject: [PATCH] Address CI/CD feedback --- .github/workflows/ci-cd.yml | 11 +++++------ CHANGES/1015.packaging.rst | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 CHANGES/1015.packaging.rst diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 45e2a72ee..6fb5a1991 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -150,7 +150,7 @@ jobs: strategy: matrix: pyver: - - "3.13-freethreading" + - 3.13-freethreading - 3.13 - 3.12 - 3.11 @@ -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 @@ -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/action@v3.2.0 with: python-version: 3.13-dev diff --git a/CHANGES/1015.packaging.rst b/CHANGES/1015.packaging.rst new file mode 100644 index 000000000..0ce3d4fb1 --- /dev/null +++ b/CHANGES/1015.packaging.rst @@ -0,0 +1 @@ +Started publishing wheels made for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.