Fix mteb dev dependencies (#262)
Browse files* Update pyproject.toml
* Update makefile
- makefile +2 -2
- pyproject.toml +2 -3
makefile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
install-for-tests:
|
| 2 |
@echo "--- Installing dependencies for tests ---"
|
| 3 |
pip install pip --upgrade
|
| 4 |
-
pip install .
|
| 5 |
|
| 6 |
test:
|
| 7 |
@echo "--- Running tests ---"
|
|
@@ -9,4 +9,4 @@ test:
|
|
| 9 |
|
| 10 |
pre-push:
|
| 11 |
@echo "--- Running pre-push commands ---"
|
| 12 |
-
python reduce_large_json_files.py
|
|
|
|
| 1 |
install-for-tests:
|
| 2 |
@echo "--- Installing dependencies for tests ---"
|
| 3 |
pip install pip --upgrade
|
| 4 |
+
pip install . --group dev
|
| 5 |
|
| 6 |
test:
|
| 7 |
@echo "--- Running tests ---"
|
|
|
|
| 9 |
|
| 10 |
pre-push:
|
| 11 |
@echo "--- Running pre-push commands ---"
|
| 12 |
+
python reduce_large_json_files.py
|
pyproject.toml
CHANGED
|
@@ -4,10 +4,9 @@ version = "0.1.0"
|
|
| 4 |
description = "The result repository for mteb"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.9,<3.13" # pytrec-eval-terrier does not compile for 3.13
|
| 7 |
-
dependencies = ["mteb
|
| 8 |
|
| 9 |
[dependency-groups]
|
| 10 |
dev = [
|
| 11 |
-
"
|
| 12 |
-
"pip>=25.0.1",
|
| 13 |
]
|
|
|
|
| 4 |
description = "The result repository for mteb"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.9,<3.13" # pytrec-eval-terrier does not compile for 3.13
|
| 7 |
+
dependencies = ["mteb>=1.13.0"]
|
| 8 |
|
| 9 |
[dependency-groups]
|
| 10 |
dev = [
|
| 11 |
+
"pytest>=8.3.4",
|
|
|
|
| 12 |
]
|