From a2493b2811c66e1fa9e4b3f6fdedaddd5f4a0ee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Thu, 8 Jan 2026 21:50:42 +0800 Subject: [PATCH] Fix httpx dependency version in pyproject.toml. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dc4f67a..9857ca9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ # The Flask HTTP Digest Authentication Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2022/11/23 -# Copyright (c) 2022-2024 imacat. +# Copyright (c) 2022-2026 imacat. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -39,7 +39,7 @@ dependencies = [ [project.optional-dependencies] devel = [ - "httpx >= 0.20.0", + "httpx >= 0.28.0", ] [project.urls]