Skip to content

Commit 08c3029

Browse files
committed
revert uv use for cpp build
1 parent b94aea1 commit 08c3029

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/Makefile.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#########
44
.PHONY: develop
55
develop: ## setup project for development
6-
uv pip install -e .[develop]
6+
python -m pip install -e .[develop]
77

88
.PHONY: build-py build-cpp build
99
build-py:
@@ -19,7 +19,7 @@ build: build-cpp build-py ## build the project
1919

2020
.PHONY: install
2121
install: ## install python library
22-
uv pip install .
22+
python -m pip install .
2323

2424
#########
2525
# LINTS #

0 commit comments

Comments
 (0)