We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab73b4 commit e7ef853Copy full SHA for e7ef853
pyproject.toml
@@ -53,6 +53,9 @@ pytest11 = { codspeed = "pytest_codspeed.plugin" }
53
requires = ["setuptools >= 61", "cffi >= 1.17.1"]
54
build-backend = "setuptools.build_meta"
55
56
+[tool.setuptools]
57
+license-files = [] # Workaround of https://github.com/astral-sh/uv/issues/9513
58
+
59
[tool.setuptools.dynamic]
60
version = { attr = "pytest_codspeed.__version__" }
61
scripts/post-release.sh
@@ -1,7 +1,9 @@
1
#!/bin/bash
2
set -e
3
4
-VERSION=v$BUMPVER_NEW_VERSION
+VERSION=$BUMPVER_NEW_VERSION
5
6
+# We handle tagging here since bumpver doesn't allow custom
7
+# tagnames and we want a v prefix
8
git tag v$VERSION -m "Release v$VERSION 🚀"
9
git push --follow-tags
0 commit comments