Skip to content

Commit

Permalink
build: don't provide pre-release wheels. #1316
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 1, 2022
1 parent 87331de commit aad5ece
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/kit.yml
Expand Up @@ -223,7 +223,9 @@ jobs:

prerel:
name: "Build pre-rel ${{ matrix.os }} ${{ matrix.py }} wheels"
if: ${{ true }} # true when there are pre-rel, false when not.
# Our C extension uses internal fields, which are moving during the 3.11.0
# alpha phases. Don't pre-build wheels.
if: ${{ false }} # true when there are pre-rel, false when not.
runs-on: "${{ matrix.os }}-latest"
strategy:
matrix:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Expand Up @@ -26,7 +26,11 @@ Unreleased
``ValueError: signal only works in main thread``. This is now fixed, closing
`issue 1312`_.

- Fix: releases no longer provide 3.11 alpha wheels. We use internal fields
which are moving during the alpha phase. Fixes `issue 1316`_.

.. _issue 1312: https://github.com/nedbat/coveragepy/issues/1312
.. _issue 1316: https://github.com/nedbat/coveragepy/issues/1316


.. _changes_63:
Expand Down

0 comments on commit aad5ece

Please sign in to comment.