Skip to content

Commit

Permalink
Update python version constraint to python = ">=3.8, <4.0"
Browse files Browse the repository at this point in the history
  • Loading branch information
nollety authored Jan 13, 2023
1 parent 4631f83 commit 6539bd7
Show file tree
Hide file tree
Showing 4 changed files with 156 additions and 67 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ jobs:
fail-fast: false
matrix:
include:
- { python-version: 3.8, os: ubuntu-latest, session: "pre-commit" }
- { python-version: 3.9, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.8, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.9, os: ubuntu-latest, session: "tests" }
- { python-version: 3.8, os: ubuntu-latest, session: "tests" }
- { python-version: 3.9, os: windows-latest, session: "tests" }
- { python-version: 3.9, os: macos-latest, session: "tests" }
- { python-version: 3.9, os: ubuntu-latest, session: "typeguard" }
- { python-version: 3.9, os: ubuntu-latest, session: "xdoctest" }
- { python-version: 3.8, os: ubuntu-latest, session: "docs-build" }
- { python-version: "3.8", os: ubuntu-latest, session: "pre-commit" }
- { python-version: "3.9", os: ubuntu-latest, session: "mypy" }
- { python-version: "3.8", os: ubuntu-latest, session: "mypy" }
- { python-version: "3.10", os: ubuntu-latest, session: "tests" }
- { python-version: "3.9", os: ubuntu-latest, session: "tests" }
- { python-version: "3.8", os: ubuntu-latest, session: "tests" }
- { python-version: "3.9", os: windows-latest, session: "tests" }
- { python-version: "3.9", os: macos-latest, session: "tests" }
- { python-version: "3.9", os: ubuntu-latest, session: "typeguard" }
- { python-version: "3.9", os: ubuntu-latest, session: "xdoctest" }
- { python-version: "3.8", os: ubuntu-latest, session: "docs-build" }

env:
NOXSESSION: ${{ matrix.session }}
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


package = "ussa1976"
python_versions = ["3.9", "3.8"]
python_versions = ["3.9", "3.8", "3.10"]
nox.options.sessions = (
"pre-commit",
"mypy",
Expand Down
Loading

0 comments on commit 6539bd7

Please sign in to comment.