Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/release/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ release = [
"uv==0.12.5",
"hatchling==1.31.0",
"python-semantic-release==10.6.2",
"GitPython==3.1.59",
"GitPython==3.1.61",
"click==8.1.8",
]

Expand Down
8 changes: 4 additions & 4 deletions scripts/release/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/run_semantic_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

REQUIRED_RUNTIME = {
"python-semantic-release": "10.6.2",
"GitPython": "3.1.59",
"GitPython": "3.1.61",
"click": "8.1.8",
}
REQUIRED_ENVIRONMENT = ("GH_TOKEN", "GITHUB_OUTPUT")
Expand Down
4 changes: 2 additions & 2 deletions tests/test_release_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def test_release_uses_the_reviewed_locked_psr_runtime() -> None:
assert "python scripts/run_semantic_release.py" in workflow
assert "GH_TOKEN: ${{ secrets.ADMIN_TOKEN }}" in workflow
assert '"python-semantic-release==10.6.2"' in tools
assert '"GitPython==3.1.59"' in tools
assert '"GitPython==3.1.61"' in tools
assert tools.count('"hatchling==1.31.0"') == 1
assert pyproject.count('"hatchling==1.31.0"') == 1
assert '"click==8.1.8"' in tools
Expand All @@ -166,7 +166,7 @@ def test_release_uses_the_reviewed_locked_psr_runtime() -> None:
assert re.search(
r'(?ms)^name = "python-semantic-release"\nversion = "10\.6\.2"$', lock
)
assert re.search(r'(?ms)^name = "gitpython"\nversion = "3\.1\.59"$', lock)
assert re.search(r'(?ms)^name = "gitpython"\nversion = "3\.1\.61"$', lock)
assert re.search(r'(?ms)^name = "hatchling"\nversion = "1\.31\.0"$', lock)


Expand Down