Skip to content

Commit

Permalink
Test for Python 3.8 - 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisVincent committed Mar 13, 2023
1 parent 9c94b91 commit acc007e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.11']
python_version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
@@ -1,7 +1,7 @@
import nox


@nox.session(python="3.11")
@nox.session(python=["3.8", "3.9", "3.10", "3.11"])
def tests(session):
session.install("-r", "requirements.txt")
session.install(".")
Expand Down

0 comments on commit acc007e

Please sign in to comment.