From 9738a50e253657ead8b741aaf9a99dcb531daad0 Mon Sep 17 00:00:00 2001 From: wistuba Date: Tue, 1 Oct 2024 10:49:38 +0200 Subject: [PATCH] fix docker building issues with sklearn --- swebench/harness/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swebench/harness/constants.py b/swebench/harness/constants.py index 33704ec2..201e5c87 100644 --- a/swebench/harness/constants.py +++ b/swebench/harness/constants.py @@ -75,7 +75,7 @@ class TestStatus(Enum): { k: { "python": "3.9", - "packages": "numpy scipy cython setuptools pytest pandas matplotlib joblib threadpoolctl", + "packages": "'numpy==1.19.2' 'scipy==1.5.2' 'cython==3.0.10' pytest 'pandas<2.0.0' 'matplotlib<3.9.0' setuptools pytest joblib threadpoolctl", "install": "python -m pip install -v --no-use-pep517 --no-build-isolation -e .", "pip_packages": ["cython", "setuptools", "numpy", "scipy"], "test_cmd": TEST_PYTEST,