Skip to content

Commit bf769cc

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent d101462 commit bf769cc

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "e1fd2598ee86662bb9d36989718b6277d438af09",
2+
"_commit": "f46d0e9611ca496d3600e43343a01dcfb86caee6",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "e1fd2598ee86662bb9d36989718b6277d438af09",
3+
"commit": "f46d0e9611ca496d3600e43343a01dcfb86caee6",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -20,7 +20,7 @@
2020
"license": "MIT",
2121
"development_status": "Development Status :: 1 - Planning",
2222
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
23-
"_commit": "e1fd2598ee86662bb9d36989718b6277d438af09"
23+
"_commit": "f46d0e9611ca496d3600e43343a01dcfb86caee6"
2424
}
2525
},
2626
"directory": null

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ on:
1111
- "noxfile.py"
1212
- "pyproject.toml"
1313
- ".github/workflows/build-docs.yml"
14-
- ".ruff.toml" # Affects docstrings via linting
15-
- "pyrightconfig.json" # Affects type hints in docs
14+
- ".ruff.toml" # Affects docstrings via linting
15+
- "pyrightconfig.json" # Affects type hints in docs
1616

1717
push:
1818
branches:

noxfile.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,13 @@ def setup_venv(session: Session) -> None:
6464
def setup_remote(session: Session) -> None:
6565
"""Set up the remote repository for the current project."""
6666
command: list[str] = [
67-
"python", SCRIPTS_FOLDER / "setup-remote.py", REPO_ROOT, "--host", REPOSITORY_HOST, "--path", REPOSITORY_PATH
67+
"python",
68+
SCRIPTS_FOLDER / "setup-remote.py",
69+
REPO_ROOT,
70+
"--host",
71+
REPOSITORY_HOST,
72+
"--path",
73+
REPOSITORY_PATH,
6874
]
6975
session.run(*command, external=True)
7076

0 commit comments

Comments
 (0)