From 1789fb00de09b48ca54bce9c3578a081eda3be28 Mon Sep 17 00:00:00 2001 From: Matt Wozniski Date: Fri, 2 Aug 2024 23:59:44 -0400 Subject: [PATCH] Publish wheels for Python 3.13 Now that Python 3.13 is ABI stable, document that it is supported and begin to publish wheels for it. Signed-off-by: Matt Wozniski --- .github/ISSUE_TEMPLATE/---bug-report.yaml | 1 + .github/workflows/build_wheels.yml | 4 ---- docs/supported_environments.rst | 2 +- news/658.feature.rst | 1 + 4 files changed, 3 insertions(+), 5 deletions(-) create mode 100644 news/658.feature.rst diff --git a/.github/ISSUE_TEMPLATE/---bug-report.yaml b/.github/ISSUE_TEMPLATE/---bug-report.yaml index a2ee420b1c..b9d40fac1e 100644 --- a/.github/ISSUE_TEMPLATE/---bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/---bug-report.yaml @@ -53,6 +53,7 @@ body: - "3.10" - "3.11" - "3.12" + - "3.13" validations: required: true - type: dropdown diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 50415afcca..8be76ce2cf 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -196,10 +196,6 @@ jobs: rmdir dist/{sdist,*-wheels} rm -r dist/tests ls -R dist - - name: Avoid publishing Python 3.13 wheels - run: | - rm -f dist/*cp313* - ls -l dist/ - uses: pypa/gh-action-pypi-publish@release/v1 with: skip_existing: true diff --git a/docs/supported_environments.rst b/docs/supported_environments.rst index 8c0873c82e..6f9da1553b 100644 --- a/docs/supported_environments.rst +++ b/docs/supported_environments.rst @@ -11,7 +11,7 @@ Supported Python versions Every Python version that hasn't reached end of life is supported. -Currently that's Python 3.7 through 3.12. +Currently that's Python 3.8 through 3.13. Supported operating systems --------------------------- diff --git a/news/658.feature.rst b/news/658.feature.rst new file mode 100644 index 0000000000..5608fd1ea0 --- /dev/null +++ b/news/658.feature.rst @@ -0,0 +1 @@ +Wheels are now published for Python 3.13, though we don't yet support free-threaded (no GIL) builds.