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

⬆️(dependencies) update python dependencies #418

Merged
merged 3 commits into from
Sep 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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ bootstrap: \
back-i18n-compile \
mails-install \
mails-build \
setup_dimail_db \
dimail-setup-db \
install-front-desk
.PHONY: bootstrap

Expand Down Expand Up @@ -283,10 +283,10 @@ i18n-generate-and-upload: \
# -- INTEROPERABILTY
# -- Dimail configuration

setup-dimail-db:
dimail-setup-db:
@echo "$(BOLD)Populating database of local dimail API container$(RESET)"
@$(MANAGE) setup_dimail_db
.PHONY: setup-dimail-db
.PHONY: dimail-setup-db

# -- Mail generator

Expand Down
3 changes: 2 additions & 1 deletion src/backend/core/resource_server/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class AuthorizationServerClient:
- Setting appropriate headers for secure communication as recommended by RFC drafts.
"""

# ruff: noqa: PLR0913
# ruff: noqa: PLR0913 PLR017
# pylint: disable=too-many-positional-arguments
# pylint: disable=too-many-arguments
def __init__(
self,
Expand Down
10 changes: 5 additions & 5 deletions src/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"boto3==1.35.20",
"boto3==1.35.29",
"Brotli==1.1.0",
"celery[redis]==5.4.0",
"django-configurations==2.5.1",
"django-cors-headers==4.4.0",
"django-countries==7.6.1",
"django-parler==2.3",
"redis==5.0.8",
"redis==5.1.0",
"django-redis==5.4.0",
"django-storages==1.14.4",
"django-timezone-field>=5.1",
Expand All @@ -45,7 +45,7 @@ dependencies = [
"gunicorn==23.0.0",
"jsonschema==4.23.0",
"nested-multipart-parser==1.5.0",
"psycopg[binary]==3.2.2",
"psycopg[binary]==3.2.3",
"PyJWT==2.9.0",
"joserfc==1.0.0",
"requests==2.32.3",
Expand All @@ -69,14 +69,14 @@ dev = [
"ipython==8.27.0",
"pyfakefs==5.6.0",
"pylint-django==2.5.5",
"pylint==3.2.7",
"pylint==3.3.1",
"pytest-cov==5.0.0",
"pytest-django==4.9.0",
"pytest==8.3.3",
"pytest-icdiff==0.9",
"pytest-xdist==3.6.1",
"responses==0.25.3",
"ruff==0.6.5",
"ruff==0.6.8",
"types-requests==2.32.0.20240914",
"freezegun==1.5.1",
]
Expand Down
Loading