From d765a89139b2b28fa82145fb6f7e213ad46c086b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 17:58:43 +0200 Subject: [PATCH] Update djangorestframework requirement from ==3.16.* to ==3.17.* (#6013) * Update djangorestframework requirement from ==3.16.* to ==3.17.* Updates the requirements on [djangorestframework](https://github.com/encode/django-rest-framework) to permit the latest version. - [Release notes](https://github.com/encode/django-rest-framework/releases) - [Commits](https://github.com/encode/django-rest-framework/compare/3.16.0...3.17.0) --- updated-dependencies: - dependency-name: djangorestframework dependency-version: 3.17.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Fix failing test --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Raphael Michel --- pyproject.toml | 2 +- src/tests/plugins/autocheckin/test_api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0df34a1075..cac4070ac7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ dependencies = [ "django-redis==6.0.*", "django-scopes==2.0.*", "django-statici18n==2.7.*", - "djangorestframework==3.16.*", + "djangorestframework==3.17.*", "dnspython==2.8.*", "drf_ujson2==1.7.*", "geoip2==5.*", diff --git a/src/tests/plugins/autocheckin/test_api.py b/src/tests/plugins/autocheckin/test_api.py index af5f45762e..5f132d9c65 100644 --- a/src/tests/plugins/autocheckin/test_api.py +++ b/src/tests/plugins/autocheckin/test_api.py @@ -43,7 +43,7 @@ RES_RULE = { "limit_products": [], "limit_variations": [], "all_payment_methods": True, - "limit_payment_methods": set(), + "limit_payment_methods": [], }