From 439dbc80082e59cce559d84cded6566872874da8 Mon Sep 17 00:00:00 2001 From: EXPLOSION Date: Wed, 29 Nov 2023 15:01:12 -0500 Subject: [PATCH] Add trio to projects list (#111) --- mypy_primer/projects.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mypy_primer/projects.py b/mypy_primer/projects.py index 083c74e..5619cd4 100644 --- a/mypy_primer/projects.py +++ b/mypy_primer/projects.py @@ -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: