diff options
| author | Michael Merickel <michael@merickel.org> | 2024-01-27 11:22:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-27 11:22:54 -0700 |
| commit | 165b16c822754c61faa46d2b64ce3cad4e183cd4 (patch) | |
| tree | 1d31056cd55aa19801b4ae104cf92f022336a32f /.github/workflows/ci-tests.yml | |
| parent | 3739a7790ba92c34098df3d804f27a1d8429f9fe (diff) | |
| parent | ca7325944a807694030bc342132aefd0efeea342 (diff) | |
| download | pyramid-165b16c822754c61faa46d2b64ce3cad4e183cd4.tar.gz pyramid-165b16c822754c61faa46d2b64ce3cad4e183cd4.tar.bz2 pyramid-165b16c822754c61faa46d2b64ce3cad4e183cd4.zip | |
Merge pull request #3737 from Jmennius/support-python-3.12
Add 3.12 to CI, tox and metadata; use latest black and flake8
Diffstat (limited to '.github/workflows/ci-tests.yml')
| -rw-r--r-- | .github/workflows/ci-tests.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 4f2aaa9bc..cc1df08ae 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -20,6 +20,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" - "pypy-3.8" os: - "ubuntu-20.04" @@ -64,10 +65,10 @@ jobs: - name: Setup python uses: actions/setup-python@v4 with: - python-version: 3.11 + python-version: 3.12 architecture: x64 - run: pip install tox - - run: tox -e py311-cover,coverage + - run: tox -e py312-cover,coverage docs: runs-on: ubuntu-20.04 name: Build the documentation |
