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 711390a commit 3dc1663Copy full SHA for 3dc1663
.github/workflows/bump.yaml
@@ -67,7 +67,9 @@ jobs:
67
# Lock everything again
68
git add .
69
uv run --no-sync pre-commit run --all-files
70
+ uv sync --no-editable --all-extras --group all-dev
71
72
+ uv run --no-sync pre-commit run --all-files
73
74
# Commit, tag and push
75
git commit -a -m "bump: version $BASE_VERSION -> $NEW_VERSION"
@@ -82,6 +84,8 @@ jobs:
82
84
mv pyproject-dev.toml pyproject.toml
83
85
# Bump to pre-release of next version
86
uv version --no-sync --bump post
87
+ # Propogate dev version back to meson.build
88
+ uv run --no-sync python scripts/propogate-pyproject-metadata.py
89
90
NEW_VERSION=`sed -ne 's/^version = "\([0-9\.post]*\)"/\1/p' pyproject.toml`
91
echo "Bumping version $BASE_VERSION > $NEW_VERSION"
0 commit comments