Skip to content

Commit 4464109

Browse files
authored
[Build][Bugfix] Restrict setuptools version to <80 (#17320)
Signed-off-by: Gregory Shtrasberg <[email protected]>
1 parent 193e78e commit 4464109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mistral_common[opencv] >= 1.5.4
3434
opencv-python-headless >= 4.11.0 # required for video IO
3535
pyyaml
3636
six>=1.16.0; python_version > '3.11' # transitive dependency of pandas that needs to be the latest version for python 3.12
37-
setuptools>=74.1.1; python_version > '3.11' # Setuptools is used by triton, we need to ensure a modern version is installed for 3.12+ so that it does not try to import distutils, which was removed in 3.12
37+
setuptools>=74.1.1,<80; python_version > '3.11' # Setuptools is used by triton, we need to ensure a modern version is installed for 3.12+ so that it does not try to import distutils, which was removed in 3.12
3838
einops # Required for Qwen2-VL.
3939
compressed-tensors == 0.9.3 # required for compressed-tensors
4040
depyf==0.18.0 # required for profiling and debugging with compilation config

0 commit comments

Comments
 (0)