From 2f5a0e9a9e4bafd070378f9a441c2a1092557387 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 17:28:28 +0000 Subject: [PATCH] Update connexion[swagger-ui] requirement in /backend Updates the requirements on [connexion[swagger-ui]](https://github.com/spec-first/connexion) to permit the latest version. - [Release notes](https://github.com/spec-first/connexion/releases) - [Commits](https://github.com/spec-first/connexion/compare/2.6.0...3.3.0) --- updated-dependencies: - dependency-name: connexion[swagger-ui] dependency-version: 3.3.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/requirements.txt b/backend/requirements.txt index 760166d..f00d39b 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -2,7 +2,7 @@ connexion[swagger-ui] >= 2.6.0; python_version>="3.6" # 2.3 is the last version that supports python 3.4-3.5 connexion[swagger-ui] <= 2.3.0; python_version=="3.5" or python_version=="3.4" # prevent breaking dependencies from advent of connexion>=3.0 -connexion[swagger-ui] <= 3.2.0; python_version>"3.4" +connexion[swagger-ui] <= 3.3.0; python_version>"3.4" # connexion requires werkzeug but connexion < 2.4.0 does not install werkzeug # we must peg werkzeug versions below to fix connexion # https://github.com/zalando/connexion/pull/1044