Skip to content

Commit a6fa69d

Browse files
authored
Allow prerelease branch for 3.14
Ref #92.
1 parent 571488a commit a6fa69d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def branches_from_devguide(devguide_dir: Path) -> list[str]:
1616
p = devguide_dir.joinpath('include/release-cycle.json')
1717
data = json.loads(p.read_text())
1818
return [
19-
branch for branch in data if data[branch]['status'] in ('bugfix', 'security')
19+
branch for branch in data if data[branch]['status'] in ('bugfix', 'security', 'prerelease')
2020
]
2121

2222

0 commit comments

Comments
 (0)