This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch limit-flask-limiter
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit f27a8481fc953c7b4757e13d1e3862e933173eb6
Author: Ash Berlin-Taylor <[email protected]>
AuthorDate: Fri Sep 12 19:56:36 2025 +0100

    Fix fab tests to block broken dependency
    
    Reported upstream to flask_limiter already, the import module that FAB was
    using was entirely removed in 3.12 -> 3.13, I think mistakenly or without
    awareness of the effect of it as it wasn't in the changelog
---
 providers/fab/pyproject.toml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/providers/fab/pyproject.toml b/providers/fab/pyproject.toml
index 608963d0b11..a827b7c1e30 100644
--- a/providers/fab/pyproject.toml
+++ b/providers/fab/pyproject.toml
@@ -80,6 +80,9 @@ dependencies = [
     "jmespath>=0.7.0; python_version < '3.13'",
     "werkzeug>=2.2,<4; python_version < '3.13'",
     "wtforms>=3.0,<4; python_version < '3.13'",
+
+    # https://github.com/alisaifee/flask-limiter/issues/479
+    "flask_limiter!=3.13",
 ]
 
 # The optional dependencies should be modified in place in the generated file

Reply via email to