Skip to content

Commit 6a8fa9d

Browse files
[pre-commit.ci] pre-commit autoupdate (#48)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.0 → v0.4.5](astral-sh/ruff-pre-commit@v0.4.0...v0.4.5) - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) * chore: pre-commit fixes Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent d9fb3c9 commit 6a8fa9d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ repos:
1414
- id: trailing-whitespace
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: "v0.4.0"
17+
rev: "v0.4.5"
1818
hooks:
1919
- id: ruff
2020
args: [--fix, --show-fixes]
2121
- id: ruff-format
2222

2323
- repo: https://github.com/codespell-project/codespell
24-
rev: "v2.2.6"
24+
rev: "v2.3.0"
2525
hooks:
2626
- id: codespell

projects/hello-cmake-package/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is an example project demonstrating the use of scikit-build for distributin
44
a CMake package for that library; and a Python wrapper implemented in pybind11.
55

66
The example assume some familiarity with CMake and pybind11, only really going into detail on the scikit-build parts.
7-
pybind11 is used to implement the biding, but anything is possible: swig, C API library, etc.
7+
pybind11 is used to implement the binding, but anything is possible: swig, C API library, etc.
88

99
To install the package run in the project directory
1010

projects/hello-pure/hello/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def hello(txt):
2-
print("Hello, %s!" % txt)
2+
print(f"Hello, {txt}!")
33

44

55
def elevation():

0 commit comments

Comments
 (0)