Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support current versions of python, django and djangorestframework #6

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading