Skip to content

Commit 6f59330

Browse files
authored
Remove uv dependency (#5824)
* fix: streamline requirements installation in Makefile * fix: correct pip command syntax in requirements installation
1 parent 66255a1 commit 6f59330

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/python_api/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ endif
2121

2222
requirements: .venv ## Install/update Python dev packages
2323
@unset CONDA_PREFIX \
24-
&& $(VENV_BIN)/python -m pip install -U uv \
25-
&& $(VENV_BIN)/uv pip install --upgrade -r requirements_dev.txt
24+
&& $(VENV_BIN)/pip install --upgrade -r requirements_dev.txt
2625

2726
pytest: requirements
2827
ifeq ($(OS),Windows_NT)

0 commit comments

Comments
 (0)