Skip to content

Commit e7ef853

Browse files
committed
chore: fix release script
1 parent fab73b4 commit e7ef853

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ pytest11 = { codspeed = "pytest_codspeed.plugin" }
5353
requires = ["setuptools >= 61", "cffi >= 1.17.1"]
5454
build-backend = "setuptools.build_meta"
5555

56+
[tool.setuptools]
57+
license-files = [] # Workaround of https://github.com/astral-sh/uv/issues/9513
58+
5659
[tool.setuptools.dynamic]
5760
version = { attr = "pytest_codspeed.__version__" }
5861

scripts/post-release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/bash
22
set -e
33

4-
VERSION=v$BUMPVER_NEW_VERSION
4+
VERSION=$BUMPVER_NEW_VERSION
55

6+
# We handle tagging here since bumpver doesn't allow custom
7+
# tagnames and we want a v prefix
68
git tag v$VERSION -m "Release v$VERSION 🚀"
79
git push --follow-tags

0 commit comments

Comments
 (0)