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 a620527 commit 90ce53fCopy full SHA for 90ce53f
scripts/make_github_release.py
@@ -3,7 +3,7 @@
3
4
import requests
5
6
-from .generate_next_version import get_version_from_changelog
+from scripts.generate_next_version import get_version_from_changelog
7
8
GITHUB_API_TOKEN = os.environ["GITHUB_API_TOKEN"]
9
scripts/release.sh
@@ -8,7 +8,7 @@ MAJOR_BRANCH="`uv run python scripts/generate_next_version.py | cut -d'.' -f1`.x
echo "# Releasing pyinfra v${VERSION} (branch ${MAJOR_BRANCH})"
10
echo "# Running tests..."
11
-pytest
+uv run pytest
12
13
echo "# Git tag & push..."
14
git tag -a "v$VERSION" -m "v$VERSION"
0 commit comments