diff options
author | Julian Berman <Julian@GrayVines.com> | 2022-05-28 11:08:58 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2022-05-28 12:25:15 -0400 |
commit | a5af0cd98202789973300252101d5f4b83b2b745 (patch) | |
tree | d1f313be940fecb2dd9e84b280b051446fc2be94 /.github | |
parent | f61f3b7a73c14409178921bf4ce23050bf90560d (diff) | |
download | jsonschema-a5af0cd98202789973300252101d5f4b83b2b745.tar.gz |
Re-enable Python 3.11 testing in CI.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 27 | ||||
-rw-r--r-- | .github/workflows/coverage.yml | 2 |
2 files changed, 12 insertions, 17 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 101c7ec..f9ef1ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,19 +84,18 @@ jobs: toxenv: py310-format_nongpl-build - name: "3.10" toxenv: py310-format_nongpl-tests - # Temporarily disabled due to pypa/setuptools#3274 - # - name: "3.11.0-alpha - 3.11.0" - # toxenv: py311-noextra-build - # - name: "3.11.0-alpha - 3.11.0" - # toxenv: py311-noextra-tests - # - name: "3.11.0-alpha - 3.11.0" - # toxenv: py311-format-build - # - name: "3.11.0-alpha - 3.11.0" - # toxenv: py311-format-tests - # - name: "3.11.0-alpha - 3.11.0" - # toxenv: py311-format_nongpl-build - # - name: "3.11.0-alpha - 3.11.0" - # toxenv: py311-format_nongpl-tests + - name: "3.11.0-beta - 3.11.0" + toxenv: py311-noextra-build + - name: "3.11.0-beta - 3.11.0" + toxenv: py311-noextra-tests + - name: "3.11.0-beta - 3.11.0" + toxenv: py311-format-build + - name: "3.11.0-beta - 3.11.0" + toxenv: py311-format-tests + - name: "3.11.0-beta - 3.11.0" + toxenv: py311-format_nongpl-build + - name: "3.11.0-beta - 3.11.0" + toxenv: py311-format_nongpl-tests - name: "3.10" toxenv: docs-dirhtml - name: "3.10" @@ -185,8 +184,6 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version.name }} - - name: Ensure we have new enough versions to respect python_version - run: python -m pip install -U pip setuptools - name: Install dependencies run: > sudo apt-get update && diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 2ee94c5..3edc627 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -15,8 +15,6 @@ jobs: uses: actions/setup-python@v3 with: python-version: "3.10" - - name: Ensure we have new enough versions to respect python_version - run: python -m pip install -U pip setuptools - name: Install tox run: python -m pip install tox - name: Collect & Upload Coverage |