summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRoberto Berto <roberto.berto@under.com.br>2024-08-27 15:37:43 -0300
committerRoberto Berto <roberto.berto@under.com.br>2024-08-27 15:37:43 -0300
commit35dc744939c802eb634abe3aae2de05c055d2f91 (patch)
tree50affc0140b69b2cc1abc0876c01656bdccdc293 /Makefile
parent35bf4762ed9e16ddf45d13db059e3f72c0646f90 (diff)
downloadpyvyos-0.2.2.tar.gz
pyvyos-0.2.2.zip
makefile now works to maintainer build/upload do pypyv0.2.2
fixed vulnerabilities: - Bump certifi from 2024.2.2 to 2024.7.4 - Bump idna from 3.6 to 3.7 - Bump urllib3 from 2.2.1 to 2.2.2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 04ed05a..42b53e9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,14 @@
-.PHONE: help
+.PHONY: help
help:
@echo "build - build the package"
@echo "upload - upload the package to PyPI"
.PHONY: build
build:
- source env/bin/activate
- python -m build --sdist
- python -m build --wheel
+ env/bin/python -m build --sdist
+ env/bin/python -m build --wheel
+.PHONY: upload
upload:
- source env/bin/activate
- twine check dist/*
- twine upload dist/*
+ env/bin/python -m twine check dist/*
+ env/bin/python -m twine upload dist/*