From eb24f5a0b995f6c8bf0c79d0cbe3d0fb2910b1f0 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 13 Aug 2023 17:15:54 -0400 Subject: [PATCH] Add some additional projects to the ecosystem CI (#6542) Adding five new projects. Some of these have seen issues filed, the others, I just tabbed through our dependency pain and looked for some reasonably-large projects that enabled rules beyond the default rule set. --- scripts/check_ecosystem.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/check_ecosystem.py b/scripts/check_ecosystem.py index 2b7b5f3775..607819b263 100755 --- a/scripts/check_ecosystem.py +++ b/scripts/check_ecosystem.py @@ -109,6 +109,10 @@ REPOSITORIES: list[Repository] = [ Repository("DisnakeDev", "disnake", "master"), Repository("apache", "airflow", "main", select="ALL"), Repository("bokeh", "bokeh", "branch-3.3", select="ALL"), + Repository("commaai", "openpilot", "master"), + Repository("freedomofpress", "securedrop", "develop"), + Repository("ibis-project", "ibis", "master"), + Repository("jrnl-org", "jrnl", "develop"), Repository("pypa", "build", "main"), Repository("pypa", "cibuildwheel", "main"), Repository("pypa", "pip", "main"), @@ -118,6 +122,7 @@ REPOSITORIES: list[Repository] = [ Repository("python-poetry", "poetry", "master"), Repository("scikit-build", "scikit-build", "main"), Repository("scikit-build", "scikit-build-core", "main"), + Repository("sphinx-doc", "sphinx", "master"), Repository("tiangolo", "fastapi", "master"), Repository("zulip", "zulip", "main", select="ALL"), ] @@ -301,7 +306,6 @@ DIFF_LINE_RE = re.compile( r"^(?P
[+-]) (?P(?P[^:]+):(?P\d+):\d+:) (?P.*)$",
 )
 
-
 T = TypeVar("T")