Skip to content

Commit

Permalink
Fix to at least Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
OCopping committed May 13, 2024
1 parent 7d957f3 commit 4a2b9c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.11", "3.12"]
include:
# Include one that runs in the dev environment
- runs-on: "ubuntu-latest"
Expand All @@ -45,7 +45,7 @@ jobs:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_dist.yml

release:
if: github.ref_type == 'tag'
needs: [dist]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"] # can add windows-latest, macos-latest
python: ["3.7", "3.8", "3.9"]
python: ["3.11", "3.12"]
pipenv: ["skip-lock"]

include:
# Add an extra Python3.7 runner to use the lockfile
# Add an extra Python3.11 runner to use the lockfile
- os: "ubuntu-latest"
python: "3.7"
python: "3.11"
pipenv: "deploy"

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 4a2b9c9

Please sign in to comment.