Skip to content

Commit 264ba4e

Browse files
Remove configure and add message before manua
l edits
1 parent 41f9e36 commit 264ba4e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

release.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,6 @@ def bump(tag: Tag) -> None:
549549
if tag.patch == 0 and tag.level == "a" and tag.serial == 0:
550550
extra_work = True
551551
other_files += [
552-
"configure",
553552
"configure.ac",
554553
"Doc/tutorial/interpreter.rst",
555554
"Doc/tutorial/stdlib.rst",
@@ -559,6 +558,10 @@ def bump(tag: Tag) -> None:
559558
".github/ISSUE_TEMPLATE/bug.yml",
560559
".github/ISSUE_TEMPLATE/crash.yml",
561560
]
561+
562+
if extra_work:
563+
print("\n*** configure.ac will be edited; you must re-run autotools afterwards! ***")
564+
562565
print("\nManual editing time...")
563566
for filename in other_files:
564567
if os.path.exists(filename):

0 commit comments

Comments
 (0)