Skip to content

Commit

Permalink
Set minimum Python version to 3.10, update dependencies
Browse files Browse the repository at this point in the history
This is requirement imposed on us by reader, which requires Python 3.10
since version 3.9. However, now that Python 3.12 has been released, it's
good idea to bump minimum Python version anyway.
  • Loading branch information
mirekdlugosz committed Nov 4, 2023
1 parent 2e0403d commit bcce943
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 39 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def lint(session):
)


@nox.session(python=["3.9", "3.10", "3.11"])
@nox.session(python=["3.10", "3.11", "3.12"])
@nox.parametrize("django_ver", ["3.2.23", "4.1.13", "4.2.7"])
def tests(session, django_ver):
session.run(
Expand Down

0 comments on commit bcce943

Please sign in to comment.