File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed
Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,3 @@ MANIFEST
1414# Hidden files.
1515. *
1616! .gitignore
17-
18- # Project files.
19- * .sublime-project
20- * .sublime-workspace
Original file line number Diff line number Diff line change @@ -5,5 +5,6 @@ include *.rst
55include LICENSE
66recursive-include doc *
77recursive-include tests *
8+ prune dev
89prune doc/build
910global-exclude *.pyc
Original file line number Diff line number Diff line change 22# This Makefile is used to manage development and distribution.
33#
44# Created: 2022-08-01
5- # Updated: 2022-08-02
5+ # Updated: 2022-08-31
66#
77
88.PHONY : build create-venv help prebuild publish test update-venv
@@ -68,13 +68,13 @@ dev-venv-install:
6868
6969.PHONY : dist-build dist-prebuild dist-publish
7070
71- dist-build : prebuild
71+ dist-build : dist- prebuild
7272 find ./dist -type f -delete
7373 ${VENV} python -m build
7474
7575dist-prebuild :
7676 ${VENV} python ./prebuild.py
7777
78- dist-publish : build
78+ dist-publish : dist- build
7979 ${VENV} twine check ./dist/*
80- ${VENV} twine upload --skip-existing ./dist/*
80+ ${VENV} twine upload -r sqlparams - -skip-existing ./dist/*
You can’t perform that action at this time.
0 commit comments