Skip to content

Commit e6e43f5

Browse files
committed
Improved Makefile [skip ci]
1 parent 4483f03 commit e6e43f5

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
.PHONY: lint build publish clean
2+
13
lint:
24
pycodestyle . --ignore=E501
35

4-
publish: clean
6+
build:
57
python3 -m build
6-
ls dist
8+
9+
publish: clean build
710
twine upload dist/*
8-
make clean
911

1012
clean:
11-
rm -rf .pytest_cache build dist pgvector.egg-info
13+
rm -rf .pytest_cache dist pgvector.egg-info

0 commit comments

Comments
 (0)