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 257c105 commit b4136b6Copy full SHA for b4136b6
build_docs.py
@@ -111,11 +111,11 @@ def from_json(cls, data: dict) -> Versions:
111
status = release["status"]
112
status = Version.SYNONYMS.get(status, status)
113
if status not in Version.STATUSES:
114
- msg = (
+ logging.warning(
115
f"Saw invalid version status {status!r}, "
116
- f"expected to be one of {permitted}."
+ f"expected to be one of {permitted}. Context: {release}"
117
)
118
- raise ValueError(msg)
+ continue
119
versions.append(Version(name=name, status=status, branch_or_tag=branch))
120
121
return cls(sorted(versions, key=Version.as_tuple))
0 commit comments