Skip to content
Merged
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
4 changes: 2 additions & 2 deletions pirel/releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from . import _cache, _utils, python_cli

DATE_NOW = datetime.date.today()
RELEASE_CYCLE_URL = "https://raw.githubusercontent.com/python/devguide/refs/heads/main/include/release-cycle.json"
RELEASE_CYCLE_URL = "https://peps.python.org/api/release-cycle.json"

STATUS_TO_TEXT = {
"feature": "is [bold]not released yet[/bold] and still accepts new features",
Expand Down Expand Up @@ -62,7 +62,7 @@ def status_style(status: str) -> str:
elif status == "feature":
return "magenta"
else:
raise ValueError(f"Unkown status {status}")
raise ValueError(f"Unknown status {status}")


def eol_color(eol: datetime.date) -> str:
Expand Down
Loading