From 75f25f432c90d49745a6a40e7cebb1cf925c15cc Mon Sep 17 00:00:00 2001 From: Kirill Korliakov <48439306+kkorlyak@users.noreply.github.com> Date: Wed, 23 Jul 2025 11:47:58 +0100 Subject: [PATCH] Update pyproject.toml Quick fix for https://github.com/amplify-education/python-hcl2/issues/242 --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e4d3baf9..a40d726e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,11 @@ classifiers = [ "Programming Language :: Python :: 3.13", ] requires-python = ">=3.7.0" -dependencies = ["lark>=1,<2"] +dependencies = [ + "lark>=1,<2", + "regex>=2024.4.16" +] + dynamic = ["version"] [project.readme]