Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace types-attrs with attrs #54

Merged
merged 2 commits into from
Nov 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions mypy_primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ def inner() -> int | None:
Project(
location="https://github.com/pytest-dev/pytest",
mypy_cmd="{mypy} src testing",
pip_cmd="{pip} install py types-attrs types-setuptools",
pip_cmd="{pip} install attrs py types-setuptools",
expected_success=True,
),
Project(
Expand Down Expand Up @@ -1042,7 +1042,7 @@ def inner() -> int | None:
Project(
location="https://github.com/scrapy/scrapy",
mypy_cmd="{mypy} scrapy tests",
pip_cmd="{pip} install types-attrs types-pyOpenSSL types-setuptools",
pip_cmd="{pip} install attrs types-pyOpenSSL types-setuptools",
expected_success=True,
),
Project(
Expand Down Expand Up @@ -1209,7 +1209,7 @@ def inner() -> int | None:
Project(
location="https://github.com/Textualize/rich",
mypy_cmd="{mypy} -p rich --ignore-missing-imports --warn-unreachable",
pip_cmd="{pip} install types-attrs",
pip_cmd="{pip} install attrs",
expected_success=True,
),
Project(
Expand All @@ -1220,7 +1220,7 @@ def inner() -> int | None:
Project(
location="https://github.com/schemathesis/schemathesis",
mypy_cmd="{mypy} src/schemathesis",
pip_cmd="{pip} install types-attrs types-requests types-PyYAML",
pip_cmd="{pip} install attrs types-requests types-PyYAML",
expected_success=True,
),
Project(
Expand Down Expand Up @@ -1413,7 +1413,7 @@ def inner() -> int | None:
location="https://github.com/DataDog/dd-trace-py",
mypy_cmd="{mypy}",
pip_cmd=(
"{pip} install types-attrs types-six types-setuptools types-docutils "
"{pip} install attrs types-six types-setuptools types-docutils "
"types-PyYAML types-protobuf"
),
expected_success=True,
Expand Down Expand Up @@ -1501,8 +1501,8 @@ def inner() -> int | None:
location="https://github.com/home-assistant/core",
mypy_cmd="{mypy} homeassistant",
pip_cmd=(
"{pip} install types-setuptools types-atomicwrites types-certifi types-croniter "
"types-PyYAML types-requests types-attrs types-python-slugify types-backports"
"{pip} install attrs types-setuptools types-atomicwrites types-certifi types-croniter "
"types-PyYAML types-requests types-python-slugify types-backports"
),
),
Project(
Expand All @@ -1518,7 +1518,7 @@ def inner() -> int | None:
location="https://github.com/streamlit/streamlit",
mypy_cmd="{mypy} --config-file=lib/mypy.ini lib scripts",
pip_cmd=(
"{pip} install tornado packaging types-toml types-python-dateutil types-attrs "
"{pip} install attrs tornado packaging types-toml types-python-dateutil "
"types-setuptools types-protobuf types-pytz types-requests types-cffi click pytest"
),
),
Expand All @@ -1530,7 +1530,7 @@ def inner() -> int | None:
Project(
location="https://github.com/mikeshardmind/SinbadCogs",
mypy_cmd="{mypy} .",
pip_cmd="{pip} install types-pytz types-python-dateutil types-PyYAML types-attrs",
pip_cmd="{pip} install attrs types-pytz types-python-dateutil types-PyYAML",
),
Project(
location="https://github.com/rotki/rotki",
Expand Down