mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
467fe27bd9
* chore(deps): update pre-commit hooks updates: - [github.com/astral-sh/ruff-pre-commit: v0.0.281 → v0.0.287](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.281...v0.0.287) - [github.com/pre-commit/mirrors-mypy: v1.4.1 → v1.5.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.4.1...v1.5.1) - [github.com/asottile/blacken-docs: 1.15.0 → 1.16.0](https://github.com/asottile/blacken-docs/compare/1.15.0...1.16.0) - [github.com/Lucas-C/pre-commit-hooks: v1.5.1 → v1.5.4](https://github.com/Lucas-C/pre-commit-hooks/compare/v1.5.1...v1.5.4) - [github.com/PyCQA/pylint: v3.0.0a6 → v3.0.0a7](https://github.com/PyCQA/pylint/compare/v3.0.0a6...v3.0.0a7) * style: pre-commit fixes * Update pyproject.toml --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
99 lines
2.3 KiB
TOML
99 lines
2.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=42", "cmake>=3.18", "ninja"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
[tool.check-manifest]
|
|
ignore = [
|
|
"tests/**",
|
|
"docs/**",
|
|
"tools/**",
|
|
"include/**",
|
|
".*",
|
|
"pybind11/include/**",
|
|
"pybind11/share/**",
|
|
"CMakeLists.txt",
|
|
"noxfile.py",
|
|
]
|
|
|
|
|
|
[tool.mypy]
|
|
files = ["pybind11"]
|
|
python_version = "3.6"
|
|
strict = true
|
|
show_error_codes = true
|
|
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
|
|
warn_unreachable = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = ["ghapi.*"]
|
|
ignore_missing_imports = true
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.0"
|
|
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
|
|
xfail_strict = true
|
|
filterwarnings = ["error"]
|
|
log_cli_level = "info"
|
|
testpaths = [
|
|
"tests",
|
|
]
|
|
timeout=300
|
|
|
|
|
|
[tool.pylint]
|
|
master.py-version = "3.6"
|
|
reports.output-format = "colorized"
|
|
messages_control.disable = [
|
|
"design",
|
|
"fixme",
|
|
"imports",
|
|
"line-too-long",
|
|
"imports",
|
|
"invalid-name",
|
|
"protected-access",
|
|
"missing-module-docstring",
|
|
"unused-argument", # covered by Ruff ARG
|
|
]
|
|
|
|
|
|
[tool.ruff]
|
|
select = [
|
|
"E", "F", "W", # flake8
|
|
"B", # flake8-bugbear
|
|
"I", # isort
|
|
"N", # pep8-naming
|
|
"ARG", # flake8-unused-arguments
|
|
"C4", # flake8-comprehensions
|
|
"EM", # flake8-errmsg
|
|
"ICN", # flake8-import-conventions
|
|
"ISC", # flake8-implicit-str-concat
|
|
"PGH", # pygrep-hooks
|
|
"PIE", # flake8-pie
|
|
"PL", # pylint
|
|
"PT", # flake8-pytest-style
|
|
"RET", # flake8-return
|
|
"RUF100", # Ruff-specific
|
|
"SIM", # flake8-simplify
|
|
"UP", # pyupgrade
|
|
"YTT", # flake8-2020
|
|
]
|
|
ignore = [
|
|
"PLR", # Design related pylint
|
|
"E501", # Line too long (Black is enough)
|
|
"PT011", # Too broad with raises in pytest
|
|
"PT004", # Fixture that doesn't return needs underscore (no, it is fine)
|
|
"SIM118", # iter(x) is not always the same as iter(x.keys())
|
|
]
|
|
target-version = "py37"
|
|
src = ["src"]
|
|
unfixable = ["T20"]
|
|
exclude = []
|
|
line-length = 120
|
|
isort.known-first-party = ["env", "pybind11_cross_module_tests", "pybind11_tests"]
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
"tests/**" = ["EM", "N", "E721"]
|
|
"tests/test_call_policies.py" = ["PLC1901"]
|