Skip to content

Commit

Permalink
switch to python 3.10 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
picciama committed Oct 16, 2024
1 parent cf7ec7e commit 6224f58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
fail-fast: false
matrix:
include:
- { python-version: 3.9, os: ubuntu-latest, session: "pre-commit" }
- { python-version: 3.9, os: ubuntu-latest, session: "safety" }
- { python-version: 3.9, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.9, 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.9, os: ubuntu-latest, session: "docs-build" }
- { python-version: 3.10, os: ubuntu-latest, session: "pre-commit" }
- { python-version: 3.10, os: ubuntu-latest, session: "safety" }
- { python-version: 3.10, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.10, os: ubuntu-latest, session: "tests" }
- { python-version: 3.10, os: windows-latest, session: "tests" }
- { python-version: 3.10, os: macos-latest, session: "tests" }
- { python-version: 3.10, os: ubuntu-latest, session: "typeguard" }
- { python-version: 3.10, os: ubuntu-latest, session: "xdoctest" }
- { python-version: 3.10, 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 @@ -18,7 +18,7 @@
sys.exit(1)

package = "drevalpy"
python_versions = ["3.9", "3.10"]
python_versions = ["3.10", "3.11"]
nox.options.sessions = (
"pre-commit",
"safety",
Expand Down

0 comments on commit 6224f58

Please sign in to comment.