Skip to content

Updated dependencies #7589

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

Merged
merged 1 commit into from
Apr 5, 2021
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
7 changes: 3 additions & 4 deletions requirements/requirements-codestyle.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# PEP8 code linting, which we run on all commits.
flake8==3.8.3
flake8-tidy-imports==4.1.0
pycodestyle==2.6.0
flake8>=3.8.4,<3.9
flake8-tidy-imports>=4.1.0,<4.2

# Sort and lint imports
isort==5.4.2
isort>=5.6.2,<6.0
2 changes: 1 addition & 1 deletion requirements/requirements-documentation.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# MkDocs to build our documentation.
mkdocs==1.1
mkdocs>=1.1.2,<1.2
14 changes: 7 additions & 7 deletions requirements/requirements-optionals.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Optional packages which may be used with REST framework.
psycopg2-binary>=2.8.5, <2.9
markdown==3.3;python_version>="3.6"
markdown==3.2.2;python_version=="3.5"
pygments==2.7.4
django-guardian==2.2.0
django-filter>=2.2.0, <2.3
coreapi==2.3.1
coreschema==0.0.4
pyyaml>=5.1
django-filter>=2.4.0,<3.0
django-guardian>=2.3.0,<2.4
markdown==3.3;python_version>="3.6"
markdown==3.2.2;python_version=="3.5"
psycopg2-binary>=2.8.5,<2.9
pygments>=2.7.1,<2.8
pyyaml>=5.3.1,<5.4
6 changes: 3 additions & 3 deletions requirements/requirements-packaging.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Wheel for PyPI installs.
wheel==0.34.2
wheel>=0.35.1,<0.36

# Twine for secured PyPI uploads.
twine==3.1.1
twine>=3.2.0,<3.3

# Transifex client for managing translation resources.
transifex-client==0.13.9
transifex-clien>=0.13.12,<0.14
6 changes: 3 additions & 3 deletions requirements/requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pytest for running the tests.
pytest>=6.1.1,<6.2
pytest-django>=4.1.0,<4.2
pytest-cov>=2.10.1
pytest>=6.1,<7.0
pytest-cov>=2.10.1,<3.0
pytest-django>=4.1.0,<5.0
3 changes: 1 addition & 2 deletions tests/test_status.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from django.test import TestCase

from rest_framework.status import (
is_client_error, is_informational, is_redirect, is_server_error,
is_success
is_client_error, is_informational, is_redirect, is_server_error, is_success
)


Expand Down
3 changes: 1 addition & 2 deletions tests/test_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from rest_framework import serializers
from rest_framework.exceptions import ValidationError
from rest_framework.validators import (
BaseUniqueForValidator, UniqueTogetherValidator, UniqueValidator,
qs_exists
BaseUniqueForValidator, UniqueTogetherValidator, UniqueValidator, qs_exists
)


Expand Down