From bd24c2d6d0e20f2ff02337a0da5aa32d61bcec9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 01:03:51 +0000 Subject: [PATCH] build(deps): update quart requirement from >=0.21.0 to >=0.22.0 Updates the requirements on [quart](https://github.com/pallets/quart) to permit the latest version. - [Release notes](https://github.com/pallets/quart/releases) - [Changelog](https://github.com/pallets/quart/blob/main/CHANGES.md) - [Commits](https://github.com/pallets/quart/compare/0.21.0...0.22.0) --- updated-dependencies: - dependency-name: quart dependency-version: 0.22.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0544af4..0701f9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "A mock REST API service for testing" requires-python = ">=3.12" dependencies = [ - "quart>=0.21.0", + "quart>=0.22.0", "hypercorn>=0.18.0", ] diff --git a/requirements.txt b/requirements.txt index 087cee6..70a41fc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -quart>=0.21.0 +quart>=0.22.0 hypercorn>=0.16.0