Skip to content

Commit

Permalink
Update Python version in GHA workflows
Browse files Browse the repository at this point in the history
Set Sphinx workflow to use Python 3.12 explicitly and removed testing for Python 3.9 in the tests workflow.

Signed-off-by: Marcelo Trevisani <[email protected]>
  • Loading branch information
marcelotrevisani committed Nov 13, 2024
1 parent d9758d0 commit dded1f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.12"
architecture: "x64"
cache: "pip"
- name: Build Documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
py_ver: ["3.9", "3.10", "3.11", "3.12"]
py_ver: ["3.10", "3.11", "3.12"]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.py_ver }}
Expand Down

0 comments on commit dded1f1

Please sign in to comment.