Skip to content

Commit 233165b

Browse files
committed
update
1 parent 7279a2f commit 233165b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
dev:
2-
python3.11 -m venv .venv
2+
python3 -m venv .venv
33
ifeq ($(OS), Windows_NT)
44
.venv\Scripts\activate
55
else
6-
source .venv/bin/activate
6+
. .venv/bin/activate
77
endif
8-
python3.11 -m pip install '.[dev]'
9-
8+
pip install '.[dev]'
9+
1010
install:
1111
pip install .
1212

0 commit comments

Comments
 (0)