We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 914fcf8 commit 4c65779Copy full SHA for 4c65779
1 file changed
Makefile
@@ -1,8 +1,11 @@
1
lint:
2
pycodestyle . --ignore=E501
3
4
-publish:
+publish: clean
5
python3 setup.py bdist_wheel --universal
6
ls dist
7
# twine upload dist/*
8
- rm -rf build dist pgvector.egg-info
+ make clean
9
+
10
+clean:
11
+ rm -rf .pytest_cache build dist pgvector.egg-info
0 commit comments