Skip to content

Commit

Permalink
Add trio to projects list (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
A5rocks committed Nov 29, 2023
1 parent b75d4ba commit 439dbc8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mypy_primer/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,15 @@ def get_projects() -> list[Project]:
pip_cmd="{pip} install types-setuptools types-psutil",
name_override="CPython (peg_generator)",
),
Project(
location="https://github.com/python-trio/trio",
mypy_cmd="{mypy} src/trio",
pyright_cmd="{pyright} src/trio",
pip_cmd=(
"{pip} install types-pyOpenSSL types-cffi attrs outcome exceptiongroup pytest"
" sniffio"
),
),
]
assert len(projects) == len({p.name for p in projects})
for p in projects:
Expand Down

0 comments on commit 439dbc8

Please sign in to comment.