Skip to content

Commit

Permalink
CI: Use Python 3.12 across the board
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 6, 2023
1 parent 8f4dfd4 commit fffafa2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'
architecture: x64
cache: 'pip'
cache-dependency-path: 'setup.py'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.12
- name: Build docs
run: |
cd docs && make check
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
cratedb-version: ['4.8.4', '5.3.2']
include:
- os: 'macos-latest'
python-version: '3.11'
python-version: '3.12'
cratedb-version: '5.3.2'
- os: 'windows-latest'
python-version: '3.11'
python-version: '3.12'
cratedb-version: '5.3.2'
env:
OS: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'setup.py'

Expand Down

0 comments on commit fffafa2

Please sign in to comment.