We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c80f8 commit b4bd4aeCopy full SHA for b4bd4ae
web/pandas_web.py
@@ -280,6 +280,7 @@ def roadmap_pdeps(context):
280
PDEP's in different status from the directory tree and GitHub.
281
"""
282
KNOWN_STATUS = {
283
+ "Draft",
284
"Under discussion",
285
"Accepted",
286
"Implemented",
@@ -319,7 +320,7 @@ def roadmap_pdeps(context):
319
320
github_repo_url = context["main"]["github_repo_url"]
321
resp = requests.get(
322
"https://api.github.com/search/issues?"
- 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}",
324
headers=GITHUB_API_HEADERS,
325
timeout=5,
326
)
0 commit comments