Skip to content

Commit 348f57f

Browse files
authored
Merge pull request #1135 from mulkieran/add-package-target
Add package target to Makefile
2 parents 46bbd71 + 3c45f54 commit 348f57f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,7 @@ yamllint:
9090
legacy-package:
9191
python3 setup.py build
9292
python3 setup.py install
93+
94+
.PHONY: package
95+
package:
96+
(umask 0022; python -m build; python -m twine check --strict ./dist/*)

0 commit comments

Comments
 (0)