Skip to content

Commit

Permalink
fix pywin32 deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Jul 1, 2024
1 parent 77f9712 commit ffe7f91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mypy_primer/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ def get_projects() -> list[Project]:
location="https://github.com/aio-libs/aiohttp",
mypy_cmd="{mypy} aiohttp",
pyright_cmd="{pyright} aiohttp",
pip_cmd="AIOHTTP_NO_EXTENSIONS=1 {pip} install -e . pytest",
deps=["pytest"],
pip_cmd="AIOHTTP_NO_EXTENSIONS=1 {pip} install -e .",
expected_mypy_success=True,
supported_platforms=["linux", "darwin"],
),
Expand Down Expand Up @@ -1191,7 +1192,7 @@ def get_projects() -> list[Project]:
location="https://github.com/mhammond/pywin32",
mypy_cmd="{mypy} .",
pyright_cmd="{pyright}",
pip_cmd="{pip} install types-pywin32 types-regex types-setuptools",
deps=["types-pywin32", "types-regex", "types-setuptools"],
),
]
assert len(projects) == len({p.name for p in projects})
Expand Down

0 comments on commit ffe7f91

Please sign in to comment.