Skip to content

Commit 275a321

Browse files
committed
Support attestations
1 parent 34076d4 commit 275a321

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ dev-venv-create: dev-venv-base dev-venv-install
6767

6868
dev-venv-install:
6969
${VENV} pip3 install --upgrade pip setuptools wheel
70-
${VENV} pip3 install --upgrade build sphinx tox twine typing-extensions
71-
${VENV} pip3 install -e "${SRC_DIR}"
70+
${VENV} pip3 install --upgrade build pypi_attestations sphinx tox twine typing-extensions
71+
${VENV} pip3 install -e "${SRC_DIR}" -C editable_mode=compat
7272

7373

7474
################################################################################
@@ -80,10 +80,11 @@ dev-venv-install:
8080
dist-build: dist-prebuild
8181
find ./dist -type f -delete
8282
${VENV} python -m build
83+
${VENV} python -m pypi_attestations sign ./dist/*
8384

8485
dist-prebuild:
8586
${VENV} python ./prebuild.py
8687

8788
dist-publish: dist-build
8889
${VENV} twine check ./dist/*
89-
${VENV} twine upload -r sqlparams --skip-existing ./dist/*
90+
${VENV} twine upload -r sqlparams --attestations --skip-existing ./dist/*

sqlparams/_meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"dedabob <https://github.com/dedabob>",
1616
]
1717
__license__ = "MIT License"
18-
__version__ = "6.1.0"
18+
__version__ = "6.1.1"

0 commit comments

Comments
 (0)