From d3ecad271455e36cfda6ebc00743945669676e9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Oct 2022 23:34:41 +0000 Subject: [PATCH] Update sanic requirement from ~=22.6.0 to ~=22.9.1 in /api Updates the requirements on [sanic](https://github.com/sanic-org/sanic) to permit the latest version. - [Release notes](https://github.com/sanic-org/sanic/releases) - [Changelog](https://github.com/sanic-org/sanic/blob/main/CHANGELOG.rst) - [Commits](https://github.com/sanic-org/sanic/compare/v22.6.0...v22.9.1) --- updated-dependencies: - dependency-name: sanic dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- api/requirements.txt | 2 +- api/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/requirements.txt b/api/requirements.txt index 837e553..4ba0eb3 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -1,5 +1,5 @@ coloredlogs~=15.0.1 -sanic~=22.6.0 +sanic~=22.9.1 oic~=1.3.0 sanic-session~=0.8.0 sanic-cors~=2.0.1 diff --git a/api/setup.py b/api/setup.py index e76b57f..d09385b 100644 --- a/api/setup.py +++ b/api/setup.py @@ -11,7 +11,7 @@ setup( package_data={}, install_requires=[ "coloredlogs~=15.0.1", - "sanic>=21.9.3,<22.7.0", + "sanic>=21.9.3,<22.10.0", "oic>=1.3.0, <2", "sanic-session~=0.8.0", "sanic-cors~=2.0.1",