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 481b8e5 commit 0789191Copy full SHA for 0789191
run_release.py
@@ -533,7 +533,10 @@ def check_pyspecific(db: ReleaseShelf) -> None:
533
f"SOURCE_URI = 'https://github.com/python/cpython/tree/{expected_branch}/%s'"
534
)
535
if expected != line.strip():
536
- raise ReleaseException("SOURCE_URI is incorrect")
+ raise ReleaseException(
537
+ f"SOURCE_URI is incorrect, expected: {expected}, got: {line.strip()} "
538
+ "(it needs changing before beta 1)"
539
+ )
540
541
542
def bump_version(db: ReleaseShelf) -> None:
0 commit comments