Skip to content

Commit

Permalink
CI: update Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
tasn committed Sep 2, 2024
1 parent 040cb7b commit da7fc3a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ jobs:
matrix:
python:
# Versions 3.0 - 3.5 are not provided by actions/python-versions
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
os: [ubuntu-18.04, windows-latest, macos-latest]
- '3.11'
- '3.12'
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- name: Checkout code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ on:

jobs:
lint:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
name: Code linting

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.7
- name: Set up Python 3.21
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.12'

- name: Update pip and install deps
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, windows-latest, macos-10.15]
os: [ubuntu-latest, windows-latest, macos-10.15]

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.8'
python-version: '3.12'

- name: Update pip and install deps
run: |
Expand Down

0 comments on commit da7fc3a

Please sign in to comment.