Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SunnyR committed Jul 26, 2024
1 parent ff837a9 commit a662dab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ Changes made in this fork:
- Upgraded to use pyproject.toml
- Use github actions over travis-ci
- Python 3.12 compatibilty
- Django >4.2,<5.1 compatibility
- Django >=4.2,<5.1 compatibility
- Removed crispy-forms integration
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exclude = [

[tool.poetry.dependencies]
python = "~3.12"
django = ">4.2,<5.1"
django = ">=4.2,<5.1"
django-filter = "^24.2"
djangorestframework = "^3.15"

Expand Down
4 changes: 2 additions & 2 deletions tests/test_backends.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from urllib.parse import quote, urlencode
from packaging.version import Version

import django_filters
import django
import django_filters
from django.test import modify_settings
from packaging.version import Version
from rest_framework import status
from rest_framework.test import APIRequestFactory, APITestCase

Expand Down

0 comments on commit a662dab

Please sign in to comment.