mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
Run pre-commit autoupdate
, fix stale pyproject.toml comments (#1712)
* Run `pre-commit autoupdate`, fix stale pyproject.toml comments * Set `--enable_bzlmod=false` for the moment Until the newer nanobind tags are pushed to the BCR, it's best to disable bzlmod for the bindings, because the Python CI breaks due to Bazel 7 enabling bzlmod by default. * Remove E203 ignore, add linebreaks to semantically group ruff options
This commit is contained in:
parent
754ef08ab9
commit
c2de526130
@ -1,17 +1,17 @@
|
|||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/keith/pre-commit-buildifier
|
- repo: https://github.com/keith/pre-commit-buildifier
|
||||||
rev: 6.3.3.1
|
rev: 6.4.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: buildifier
|
- id: buildifier
|
||||||
- id: buildifier-lint
|
- id: buildifier-lint
|
||||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||||
rev: v1.6.1
|
rev: v1.7.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: mypy
|
- id: mypy
|
||||||
types_or: [ python, pyi ]
|
types_or: [ python, pyi ]
|
||||||
args: [ "--ignore-missing-imports", "--scripts-are-modules" ]
|
args: [ "--ignore-missing-imports", "--scripts-are-modules" ]
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: v0.1.5
|
rev: v0.1.7
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args: [ --fix, --exit-non-zero-on-fix ]
|
args: [ --fix, --exit-non-zero-on-fix ]
|
||||||
|
@ -71,15 +71,14 @@ ignore_missing_imports = true
|
|||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
# explicitly tell ruff the source directory to correctly identify first-party package.
|
# explicitly tell ruff the source directory to correctly identify first-party package.
|
||||||
src = ["bindings/python"]
|
src = ["bindings/python"]
|
||||||
|
|
||||||
line-length = 80
|
line-length = 80
|
||||||
target-version = "py311"
|
target-version = "py311"
|
||||||
|
|
||||||
# Enable pycodestyle (`E`, `W`), Pyflakes (`F`), and isort (`I`) codes by default.
|
# Enable pycodestyle (`E`, `W`), Pyflakes (`F`), and isort (`I`) codes by default.
|
||||||
select = ["E", "F", "I", "W"]
|
select = ["E", "F", "I", "W"]
|
||||||
ignore = [
|
ignore = [
|
||||||
# whitespace before colon (:), rely on black for formatting.
|
"E501", # line too long
|
||||||
"E203",
|
|
||||||
# line too long, rely on black for formatting.
|
|
||||||
"E501",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.ruff.isort]
|
[tool.ruff.isort]
|
||||||
|
1
setup.py
1
setup.py
@ -74,6 +74,7 @@ class BuildBazelExtension(build_ext.build_ext):
|
|||||||
"bazel",
|
"bazel",
|
||||||
"build",
|
"build",
|
||||||
ext.bazel_target,
|
ext.bazel_target,
|
||||||
|
"--enable_bzlmod=false",
|
||||||
f"--symlink_prefix={temp_path / 'bazel-'}",
|
f"--symlink_prefix={temp_path / 'bazel-'}",
|
||||||
f"--compilation_mode={'dbg' if self.debug else 'opt'}",
|
f"--compilation_mode={'dbg' if self.debug else 'opt'}",
|
||||||
# C++17 is required by nanobind
|
# C++17 is required by nanobind
|
||||||
|
Loading…
Reference in New Issue
Block a user