Skip to content

Commit

Permalink
Scheduled biweekly dependency update for week 49 (#1189)
Browse files Browse the repository at this point in the history
* Update flake8-bugbear from 23.9.16 to 23.12.2

* Update sphinx_rtd_theme from 1.3.0 to 2.0.0

* Update django-filter from 23.3 to 23.4

* Pin django-polymorphic to latest version 3.1.0

* Update faker from 20.0.3 to 20.1.0

* Fix django-polymorhpic version for now

* Fixing B018 useless dict

---------

Co-authored-by: Oliver Sauder <[email protected]>
  • Loading branch information
pyup-bot and sliverc authored Dec 11, 2023
1 parent 027e44c commit 6aaaac7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements/requirements-codestyle.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==23.11.0
flake8==6.1.0
flake8-bugbear==23.9.16
flake8-bugbear==23.12.2
flake8-isort==6.1.1
isort==5.12.0
2 changes: 1 addition & 1 deletion requirements/requirements-documentation.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
recommonmark==0.7.1
Sphinx==7.2.6
sphinx_rtd_theme==1.3.0
sphinx_rtd_theme==2.0.0
4 changes: 2 additions & 2 deletions requirements/requirements-optionals.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
django-filter==23.3
django-filter==23.4
# once next version has been released (>3.1.0) this
# should be set to pinned version again
# see https://github.com/django-polymorphic/django-polymorphic/pull/541
django-polymorphic@git+https://github.com/django-polymorphic/django-polymorphic@master
django-polymorphic@git+https://github.com/django-polymorphic/django-polymorphic@master # pyup: ignore
pyyaml==6.0.1
uritemplate==4.1.1
2 changes: 1 addition & 1 deletion requirements/requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
factory-boy==3.3.0
Faker==20.0.3
Faker==20.1.0
pytest==7.4.3
pytest-cov==4.1.0
pytest-django==4.7.0
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_json_api/renderers.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ def render_relationship_view(
render_data = {"data": data}
links = view.get_links()
if links:
render_data.update({"links": links}),
render_data["links"] = links
return super().render(render_data, accepted_media_type, renderer_context)

def render_errors(self, data, accepted_media_type=None, renderer_context=None):
Expand Down

0 comments on commit 6aaaac7

Please sign in to comment.