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

Update pip-dependencies #158

Merged
merged 4 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: name-tests-test
args: [--pytest-test-first]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.280 # must match pyproject.toml
rev: v0.0.283 # must match pyproject.toml
hooks:
- id: ruff
- repo: https://github.com/psf/black-pre-commit-mirror
Expand Down
22 changes: 14 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@ rich = ["rich", "rich-argparse>=1"]
# so the CLI docs generated from --help are consistent
docs = [
"typeshed-stats[rich]",
"MarkDown==3.3.7",
"mkdocs==1.4.3",
"mkdocs-macros-plugin==1.0.2",
"mkdocs-material==9.1.18",
"mkdocstrings[python]==0.22.0",
"MarkDown==3.4.4",
"mkdocs==1.5.2",
"mkdocs-macros-plugin==1.0.4",
"mkdocs-material==9.1.21",
"mkdocstrings==0.22.0",
"mkdocstrings-python==1.3.0",
]
pytest = [
"typeshed-stats[rich]",
Expand All @@ -75,7 +76,7 @@ typecheck = [
"typeshed-stats[rich,docs,pytest]",
"mypy==1.4.1",
"types-beautifulsoup4==4.12.0.5",
"types-Markdown==3.4.2.9",
"types-Markdown==3.4.2.10",
]
# All of these must match .pre-commit-config.yaml
#
Expand All @@ -86,7 +87,7 @@ misc-lint = [
"black==23.7.0",
"blacken-docs==1.15.0",
"pre-commit-hooks==4.4.0",
"ruff==0.0.280",
"ruff==0.0.283",
]
dev = ["typeshed-stats[rich,docs,typecheck,pytest,misc-lint]"]

Expand Down Expand Up @@ -120,7 +121,12 @@ unfixable = [
"F602", # automatic fix might obscure issue
"B018", # automatic fix might obscure issue
]
per-file-ignores = {"tests/*.py" = ["D"]}

[tool.ruff.per-file-ignores]
"tests/*.py" = [
"D", # Don't need docstrings in test methods
"E721" # Asserting exact types is desirable in tests; E721 doesn't make sense
]

[tool.ruff.pydocstyle]
convention = "google"
Expand Down
2 changes: 1 addition & 1 deletion src/typeshed_stats/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def format_package(package_stats: PackageInfo) -> str:
del kwargs["stubtest_settings"]

kwargs = {
key: (f"{val:,}" if type(val) is int else val)
key: (f"{val:,}" if isinstance(val, int) else val)
for key, val in kwargs.items()
}

Expand Down