Skip to content

Commit

Permalink
fix matplotlib
Browse files Browse the repository at this point in the history
  • Loading branch information
xingyaoww committed Mar 14, 2024
1 parent 39d43ed commit 8653c7a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion harness/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@
"python": "3.9",
"packages": "environment.yml",
"install": "python -m pip install -e .",
"pip_packages": "pytest",
}
for k in ["3.5", "3.6", "3.7"]
}
Expand All @@ -174,6 +175,7 @@
"python": "3.8",
"packages": "requirements.txt",
"install": "python -m pip install -e .",
"pip_packages": "pytest"
}
for k in ["3.1", "3.2", "3.3", "3.4"]
}
Expand All @@ -184,6 +186,7 @@
"python": "3.7",
"packages": "requirements.txt",
"install": "python -m pip install -e .",
"pip_packages": "pytest",
}
for k in ["3.0"]
}
Expand All @@ -193,6 +196,7 @@
k: {
"python": "3.5",
"install": "python setup.py build; python setup.py install",
"pip_packages": "pytest",
}
for k in ["2.0", "2.1", "2.2", "1.0", "1.1", "1.2", "1.3", "1.4", "1.5"]
}
Expand Down Expand Up @@ -472,4 +476,4 @@

# Constants - Miscellaneous
NON_TEST_EXTS = [".json", ".png", "csv", ".txt", ".md", ".jpg", ".jpeg", ".pkl", ".yml", ".yaml", ".toml"]
SWE_BENCH_URL_RAW = "https://raw.githubusercontent.com/"
SWE_BENCH_URL_RAW = "https://raw.githubusercontent.com/"

0 comments on commit 8653c7a

Please sign in to comment.