Updated python version to 3.12 in workflow files

This commit is contained in:
Marcelo Prates
2025-08-31 11:58:24 -03:00
parent a7bea3a401
commit 74ebf5fa8d
6 changed files with 7 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
# Ensure mkdocs.yml exists in the repo root
- name: Check for mkdocs.yml in root
run: |

View File

@@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install nbconvert
run: |

View File

@@ -25,10 +25,10 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.12
- name: Install build and twine
run: |

View File

@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4