Skip to content

Commit

Permalink
Merge pull request #46 from elcaminoreal/fix-version
Browse files Browse the repository at this point in the history
switch to default version being 3.12
  • Loading branch information
moshez authored Jan 18, 2024
2 parents 41c7b75 + cca9508 commit c389f3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
include:
- { python: "3.11", os: ubuntu-latest, check: "tests-3.11" }
- { python: "3.12", os: ubuntu-latest, check: "tests-3.12" }
- { python: "3.11", os: ubuntu-latest, check: "lint" }
- { python: "3.11", os: ubuntu-latest, check: "docs" }
- { python: "3.11", os: ubuntu-latest, check: "mypy" }
- { python: "3.11", os: ubuntu-latest, check: "build" }
- { python: "3.12", os: ubuntu-latest, check: "lint" }
- { python: "3.12", os: ubuntu-latest, check: "docs" }
- { python: "3.12", os: ubuntu-latest, check: "mypy" }
- { python: "3.12", os: ubuntu-latest, check: "build" }
name: ${{ matrix.check }} on Python ${{ matrix.python }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
nox.options.envdir = "build/nox"
nox.options.sessions = ["lint", "tests", "mypy", "docs", "build"]

VERSIONS = ["3.12", "3.11"]
VERSIONS = ["3.11", "3.12"]


@nox.session(python=VERSIONS)
Expand Down

0 comments on commit c389f3f

Please sign in to comment.