Skip to content

Commit afdc452

Browse files
authored
Revert "Allow prerelease branch for 3.14" (#139)
This reverts commit c3da117.
1 parent 8bce055 commit afdc452

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

completion.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ def branches_from_devguide(devguide_dir: Path) -> list[str]:
1212
p = devguide_dir.joinpath('include/release-cycle.json')
1313
data = json.loads(p.read_text())
1414
return [
15-
branch
16-
for branch in data
17-
if data[branch]['status'] in ('bugfix', 'security', 'prerelease')
15+
branch for branch in data if data[branch]['status'] in ('bugfix', 'security')
1816
]
1917

2018

0 commit comments

Comments
 (0)