Skip to content

Commit 90ce53f

Browse files
committed
meta: fix two small release script bugs
1 parent a620527 commit 90ce53f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/make_github_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import requests
55

6-
from .generate_next_version import get_version_from_changelog
6+
from scripts.generate_next_version import get_version_from_changelog
77

88
GITHUB_API_TOKEN = os.environ["GITHUB_API_TOKEN"]
99

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MAJOR_BRANCH="`uv run python scripts/generate_next_version.py | cut -d'.' -f1`.x
88
echo "# Releasing pyinfra v${VERSION} (branch ${MAJOR_BRANCH})"
99

1010
echo "# Running tests..."
11-
pytest
11+
uv run pytest
1212

1313
echo "# Git tag & push..."
1414
git tag -a "v$VERSION" -m "v$VERSION"

0 commit comments

Comments
 (0)