From db47bc8a52b62edc741104d62f12c3a72eb3b77f Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Sun, 28 Jul 2024 07:57:12 +0200 Subject: [PATCH] Remove incremental upper-bind limit The https://github.com/twisted/incremental/issues/106 issue has been addressed in 24.7.2 so we are removing the limit - just in case we also exclude the buggy versions, even if they are yanked. --- hatch_build.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hatch_build.py b/hatch_build.py index 34066ecc6d16b..ab18c04495b58 100644 --- a/hatch_build.py +++ b/hatch_build.py @@ -201,9 +201,8 @@ "click>=8.0", "gitpython>=3.1.40", "hatch>=1.9.1", - # Incremental 24.7.0 has broken `python -m virtualenv` command when run in /opt/airflow directory - # This limit should be removed after fixing https://github.com/twisted/incremental/issues/106 - "incremental<=22.10.0", + # Incremental 24.7.0, 24.7.1 has broken `python -m virtualenv` command when run in /opt/airflow directory + "incremental!=24.7.0,!=24.7.1,>=22.10.0", "pipdeptree>=2.13.1", "pygithub>=2.1.1", "restructuredtext-lint>=1.4.0",