From 3bc6b97c675f64ab1ff031b835a2105699bfa3fa Mon Sep 17 00:00:00 2001 From: Daniel Cauchi <33454325+CowKeyMan@users.noreply.github.com> Date: Thu, 27 Nov 2025 16:03:20 +0200 Subject: [PATCH] Make ruff dependency less strict This makes it less likely that projects which have this as a dependency will find themselves stuck --- betterproto2_compiler/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/betterproto2_compiler/pyproject.toml b/betterproto2_compiler/pyproject.toml index 405587f..7ad802d 100644 --- a/betterproto2_compiler/pyproject.toml +++ b/betterproto2_compiler/pyproject.toml @@ -18,7 +18,7 @@ dependencies = [ # TODO use the version from the current repo? "betterproto2>=0.9.0,<0.10", # "betterproto2", - "ruff>=0.9.3,<0.15.0", + "ruff>=0.9.3", "jinja2>=3.0.3", "typing-extensions>=4.7.1,<5", "strenum>=0.4.15,<0.5 ; python_version == '3.10'",