Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: manual cruft update
  • Loading branch information
56kyle committed Jul 5, 2025
commit 59390c0defb8238d7e7867171fb01300c9a3a167
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_commit": "637f49c0b1908a8f2a3fb0fc5e80a0c54935c44d",
"_commit": "b8d0f2967a3aabcb7e3eb80b361fa2452cd2e4c8",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"add_rust_extension": false,
"author": "Kyle Oliver",
Expand Down
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"commit": "637f49c0b1908a8f2a3fb0fc5e80a0c54935c44d",
"commit": "b8d0f2967a3aabcb7e3eb80b361fa2452cd2e4c8",
"checkout": null,
"context": {
"cookiecutter": {
Expand All @@ -18,7 +18,7 @@
"license": "MIT",
"development_status": "Development Status :: 1 - Planning",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"_commit": "637f49c0b1908a8f2a3fb0fc5e80a0c54935c44d"
"_commit": "b8d0f2967a3aabcb7e3eb80b361fa2452cd2e4c8"
}
},
"directory": null
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Run Python type checking
run: uvx nox -s typecheck-${{ matrix.python-version }}
run: uvx nox -s typecheck(${{ matrix.python-version }})
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def lint_python(session: Session) -> None:
@nox.session(python=None, name="typecheck", tags=[TYPE, PYTHON, CI])
def typecheck(session: Session, python_version: str) -> None:
"""Run static type checking (Pyright) on Python code."""
session.log(f"Running Pyright check with py{session.python}.")
session.log(f"Running Pyright check with py{python_version}.")
session.run("uvx", "pyright", "--pythonversion", python_version)


Expand Down
Loading