Skip to content

Commit

Permalink
workflows: adjust for new python (3.8+)/sphinx (v7.2.x) targets
Browse files Browse the repository at this point in the history
The tox configuration has been adjusted with a new versions of Python
and SPhinx to test against. Adjusting the automated building to invoke
these accordingly.

Signed-off-by: James Knight <[email protected]>
  • Loading branch information
jdknight committed Sep 9, 2023
1 parent ca1a97f commit 2c2878b
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,29 +37,27 @@ jobs:
strategy:
matrix:
include:
- { os: ubuntu-latest, python: "3.7", toxenv: py37-sphinx53, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx53, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx60, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx53, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx60, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx53, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx60, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx72, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx53, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx60, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx72, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx70, cache: ~/.cache/pip }
- { os: macos-latest, python: "3.11", toxenv: py311-sphinx70, cache: ~/Library/Caches/pip }
- { os: windows-latest, python: "3.11", toxenv: py311-sphinx70, cache: ~\AppData\Local\pip\Cache }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx72, cache: ~/.cache/pip }
- { os: macos-latest, python: "3.11", toxenv: py311-sphinx72, cache: ~/Library/Caches/pip }
- { os: windows-latest, python: "3.11", toxenv: py311-sphinx72, cache: ~\AppData\Local\pip\Cache }
- { os: ubuntu-latest, python: "3.11", toxenv: flake8, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: pylint, cache: ~/.cache/pip }

Expand Down

0 comments on commit 2c2878b

Please sign in to comment.