From da7fc3a505c1ed224d942186b872defbfdc6c5c7 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 2 Sep 2024 11:32:36 -0500 Subject: [PATCH] CI: update Python version --- .github/workflows/ci.yml | 7 +++---- .github/workflows/lint.yml | 6 +++--- .github/workflows/manual.yml | 4 ++-- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4827948..1c252c94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4cbd84b6..58ff6f8f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: | diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 4527877a..a6fb9613 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -11,7 +11,7 @@ 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 @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: '3.8' + python-version: '3.12' - name: Update pip and install deps run: |