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 ac6cbb9 commit 14d21fcCopy full SHA for 14d21fc
release.py
@@ -208,7 +208,7 @@ def is_feature_freeze_release(self) -> bool:
208
209
@property
210
def is_security_release(self) -> bool:
211
- url = "https://raw.githubusercontent.com/python/devguide/refs/heads/main/include/release-cycle.json"
+ url = "https://peps.python.org/api/release-cycle.json"
212
with urllib.request.urlopen(url) as response:
213
data = json.loads(response.read())
214
return str(data[self.basic_version]["status"]) == "security"
0 commit comments