From 15154e77095781249bbab3e8855755ffdc2042f6 Mon Sep 17 00:00:00 2001 From: Golam Date: Thu, 12 Dec 2024 17:29:47 +0100 Subject: [PATCH] Update pyproject.toml to allow building with latest pint pint_pal currently fails to build because of the strict requirement "==" on pint version. Proposing to switch to ">=" . --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b0eef5b..6cb4010 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ readme = "README.md" requires-python = ">=3.8" dependencies = [ "ruamel.yaml", - "pint_pulsar==1.0.1", + "pint_pulsar>=1.0.1", "enterprise-pulsar>=3.3.2", "enterprise-extensions>=v2.4.1", "pytest",