diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-10 07:39:07 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-10 18:45:37 -0500 |
| commit | 9765493020e6292599e272978a25935dd4d0fa88 (patch) | |
| tree | 059c5310f84fe88f87a58ca9db6a11c2e3dca014 /.github/workflows/kit.yml | |
| parent | dfa97742b62f83b5c892e5de78a3ef1a97ee8a27 (diff) | |
| download | python-coveragepy-git-9765493020e6292599e272978a25935dd4d0fa88.tar.gz | |
fix: CPython 3.11 support. #1241
The fix for CTracer is egregious and will need to be updated when there's a
supported way to do it.
The fullcoverage skip is noted in
https://github.com/nedbat/coveragepy/issues/1278
The raise_through_with skip is noted in
https://github.com/nedbat/coveragepy/issues/1270
Diffstat (limited to '.github/workflows/kit.yml')
| -rw-r--r-- | .github/workflows/kit.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index fc454858..3aa67dde 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -4,6 +4,15 @@ # Based on: # https://github.com/joerick/cibuildwheel/blob/master/examples/github-deploy.yml +# To test installing wheels without uploading them to PyPI: +# +# $ mkdir /tmp/pypi +# $ cp dist/* /tmp/pypi +# $ python -m pip install piprepo +# $ piprepo build /tmp/pypi +# $ python -m pip install -v coverage --index-url=file:///tmp/pypi/simple +# + name: "Kits" on: @@ -197,7 +206,7 @@ jobs: prerel: name: "Build pre-rel ${{ matrix.os }} ${{ matrix.py }} wheels" - if: ${{ false }} # disable for now, since there are no pre-rel Python versions. + if: ${{ true }} # true when there are pre-rel, false when not. runs-on: "${{ matrix.os }}-latest" strategy: matrix: @@ -206,7 +215,7 @@ jobs: - windows - macos py: - - "3.10.0-rc.2" + - "3.11.0-alpha.2" fail-fast: false steps: |
