Skip to content

Commit

Permalink
Add Poetry and FastAPI to ecosystem checks (#6245)
Browse files Browse the repository at this point in the history
Poetry in particular would be useful to avoid issues like
#6233.
  • Loading branch information
charliermarsh authored Aug 1, 2023
1 parent 928ab63 commit e08f873
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/check_ecosystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,19 @@ async def _get_commit(self: Self, checkout_dir: Path) -> str:


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"),
]

Expand Down

0 comments on commit e08f873

Please sign in to comment.