Skip to content

Commit

Permalink
Test current versiond of python, django and djangorestframework.
Browse files Browse the repository at this point in the history
  • Loading branch information
SupImDos committed Apr 30, 2024
1 parent 22abc3f commit cc5093e
Show file tree
Hide file tree
Showing 6 changed files with 831 additions and 658 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ This means that you can efficiently show a list of all of the model instances th
.. _django: https://djangoproject.com/
.. _django-rules: https://github.com/dfunckt/django-rules

Bridgekeeper is tested on Django 2.2 and 3.0 on all Python versions Django supports, and is licensed under the MIT License.
Bridgekeeper is tested on Django 3.2, 4.2 and 5.0 on all Python versions Django supports, and is licensed under the MIT License.
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
nox.options.error_on_external_run = True


@nox.session(python=("3.6", "3.7", "3.8"))
@nox.parametrize("django", ("2.2", "3.0"))
@nox.session(python=("3.8", "3.9", "3.10", "3.11", "3.12"))
@nox.parametrize("django", ("3.2", "4.2", "5.0"))
def tests(session, django):
if django == "3.0" and session.python == "3.5":
if django == "5.0" and session.python in ("3.8", "3.9"):
session.skip()
session.install("poetry")
session.install(f"django>={django},<{django}.999")
Expand Down
Loading

0 comments on commit cc5093e

Please sign in to comment.