Skip to content

Commit

Permalink
GitHub Actions: use 3.11 as current Python and add 3.12-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
brechtm committed Dec 1, 2022
1 parent 1b39feb commit 04274dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/noxpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
'3.8': '3.8',
'3.9': '3.9',
'3.10': '3.10',
'3.11.0-alpha - 3.11': '3.11',
'3.11': '3.11',
'3.12.0-alpha - 3.12': '3.12',
'pypy-3.8': 'pypy3',
'pypy-3.9': 'pypy3',
'pypy-3.10': 'pypy3',
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
default: false

env:
current_python: '3.10'
current_python: '3.11'
poetry_version: '1.1.12'
nox_cmd: 'nox --verbose --error-on-missing-interpreters --session'
jobs:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
fail-fast: false
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11.0-alpha - 3.11, pypy-3.9]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12.0-alpha - 3.12, pypy-3.9]
noxenv: [unit]
cov: [1]
name: [""]
Expand Down Expand Up @@ -175,17 +175,18 @@ jobs:
fail-fast: false
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: ['3.10']
python-version: ['3.11']
noxenv: [regression]
cov: [1]
name: [""]
include:
- { os: Ubuntu, python-version: 3.7, noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: 3.8, noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: '3.10', noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: 3.11.0-alpha - 3.11, noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: 3.11, noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: 3.12.0-alpha - 3.12, noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: pypy-3.9, noxenv: regression, cov: 1 }
- { os: Ubuntu, python-version: '3.10', noxenv: regression_docutils, cov: 0, name: " (docutils)" }
- { os: Ubuntu, python-version: 3.11, noxenv: regression_docutils, cov: 0, name: " (docutils)" }
- { os: Ubuntu, python-version: 3.9, noxenv: regression_sphinx, cov: 0, name: " (Sphinx)" }
runs-on: ${{ matrix.os }}-latest
env:
Expand Down

0 comments on commit 04274dc

Please sign in to comment.