Skip to content

Commit 5da0277

Browse files
authored
Merge pull request #40 from python-project-templates/tkp/uv2
Switch remaining templates to uv
2 parents 6957226 + b94aea1 commit 5da0277

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

cpp/Makefile.jinja

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#########
44
.PHONY: develop
55
develop: ## setup project for development
6-
python -m pip install -e .[develop]
6+
uv 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-
python -m pip install .
22+
uv pip install .
2323

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

js/Makefile.jinja

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#########
44
.PHONY: develop-py develop-js develop
55
develop-py:
6-
python -m pip install -e .[develop]
6+
uv pip install -e .[develop]
77

88
develop-js:
99
cd js; pnpm install && npx playwright install
@@ -21,7 +21,7 @@ build: build-js build-py ## build the project
2121

2222
.PHONY: install
2323
install: ## install python library
24-
python -m pip install .
24+
uv pip install .
2525

2626
#########
2727
# LINTS #

jupyter/Makefile.jinja

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#########
44
.PHONY: develop-py develop-js develop
55
develop-py:
6-
python -m pip install -e .[develop]
6+
uv pip install -e .[develop]
77

88
develop-js:
99
cd js; pnpm install
@@ -21,7 +21,7 @@ build: build-js build-py ## build the project
2121

2222
.PHONY: install
2323
install: ## install python library
24-
python -m pip install .
24+
uv pip install .
2525

2626
#########
2727
# LINTS #

rust/Makefile.jinja

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#########
44
.PHONY: develop-py develop-rust develop
55
develop-py:
6-
python -m pip install -e .[develop]
6+
uv pip install -e .[develop]
77

88
develop-rust:
99
make -C rust develop
@@ -24,7 +24,7 @@ build: build-rust build-py ## build the project
2424

2525
.PHONY: install
2626
install: ## install python library
27-
python -m pip install .
27+
uv pip install .
2828

2929
UNAME := $(shell uname)
3030
ifeq ($(UNAME), Darwin)

0 commit comments

Comments
 (0)