Skip to content

Commit

Permalink
fix project definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Jul 2, 2024
1 parent a95d7e7 commit 541d7ef
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions mypy_primer/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ def get_projects() -> list[Project]:
),
Project(
location="https://github.com/pypa/packaging",
mypy_cmd="{mypy} packaging",
pyright_cmd="{pyright}",
mypy_cmd="{mypy} src",
pyright_cmd="{pyright} src",
expected_mypy_success=True,
),
Project(
Expand Down Expand Up @@ -618,7 +618,7 @@ def get_projects() -> list[Project]:
),
Project(
location="https://gitlab.com/cki-project/cki-lib",
mypy_cmd="{mypy} --strict",
mypy_cmd="{mypy} --strict .",
pyright_cmd="{pyright}",
deps=["types-PyYAML", "types-requests"],
expected_mypy_success=True,
Expand Down Expand Up @@ -677,7 +677,7 @@ def get_projects() -> list[Project]:
),
Project(
location="https://github.com/nion-software/nionutils",
mypy_cmd="{mypy} --namespace-packages --strict -p nion.utils",
mypy_cmd="{mypy} --strict -p nion.utils",
pyright_cmd="{pyright}",
expected_mypy_success=True,
),
Expand Down Expand Up @@ -948,8 +948,9 @@ def get_projects() -> list[Project]:
),
Project(
location="https://github.com/yurijmikhalevich/rclip",
mypy_cmd="{mypy} rclip",
mypy_cmd="{mypy} rclip --explicit-package-bases",
pyright_cmd="{pyright}",
deps=["numpy", "types-Pillow", "types-requests", "types-tqdm"],
),
Project(
location="https://github.com/psycopg/psycopg",
Expand Down

0 comments on commit 541d7ef

Please sign in to comment.