Add Poetry and FastAPI to ecosystem checks (#6245)

Poetry in particular would be useful to avoid issues like
https://github.com/astral-sh/ruff/issues/6233.
This commit is contained in:
Charlie Marsh 2023-08-01 11:48:34 -04:00 committed by GitHub
parent 928ab63a64
commit e08f873077
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -106,17 +106,19 @@ class Repository(NamedTuple):
REPOSITORIES: list[Repository] = [
Repository("DisnakeDev", "disnake", "master"),
Repository("apache", "airflow", "main", select="ALL"),
Repository("bokeh", "bokeh", "branch-3.2", select="ALL"),
Repository("pypa", "build", "main"),
Repository("pypa", "cibuildwheel", "main"),
Repository("pypa", "setuptools", "main"),
Repository("pypa", "pip", "main"),
Repository("pypa", "setuptools", "main"),
Repository("python", "mypy", "master"),
Repository("DisnakeDev", "disnake", "master"),
Repository("python", "typeshed", "main", select="PYI"),
Repository("python-poetry", "poetry", "master"),
Repository("scikit-build", "scikit-build", "main"),
Repository("scikit-build", "scikit-build-core", "main"),
Repository("python", "typeshed", "main", select="PYI"),
Repository("tiangolo", "fastapi", "master"),
Repository("zulip", "zulip", "main", select="ALL"),
]