Skip to content

Commit b4bd4ae

Browse files
authored
CI/DOC: Fix CI failure for Status: Draft PDEPs and don't show them on the roadmap webpage (#59254)
* CI: fix CI failure for PDEP with status: Draft * Exclude draft PDEPs
1 parent 56c80f8 commit b4bd4ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/pandas_web.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ def roadmap_pdeps(context):
280280
PDEP's in different status from the directory tree and GitHub.
281281
"""
282282
KNOWN_STATUS = {
283+
"Draft",
283284
"Under discussion",
284285
"Accepted",
285286
"Implemented",
@@ -319,7 +320,7 @@ def roadmap_pdeps(context):
319320
github_repo_url = context["main"]["github_repo_url"]
320321
resp = requests.get(
321322
"https://api.github.com/search/issues?"
322-
f"q=is:pr is:open label:PDEP repo:{github_repo_url}",
323+
f"q=is:pr is:open label:PDEP draft:false repo:{github_repo_url}",
323324
headers=GITHUB_API_HEADERS,
324325
timeout=5,
325326
)

0 commit comments

Comments
 (0)