Skip to content

Commit 4b945da

Browse files
committed
chore: manually run cruft update
1 parent 65cfdbf commit 4b945da

File tree

10 files changed

+85
-85
lines changed

10 files changed

+85
-85
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": "e9527824a348982d99e04bf5080df64f0d739a3e",
2+
"_commit": "f1681e15419fe13fe20165449373f9afe683af52",
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": "e9527824a348982d99e04bf5080df64f0d739a3e",
3+
"commit": "f1681e15419fe13fe20165449373f9afe683af52",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"development_status": "Development Status :: 1 - Planning",
2020
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
21-
"_commit": "e9527824a348982d99e04bf5080df64f0d739a3e"
21+
"_commit": "f1681e15419fe13fe20165449373f9afe683af52"
2222
}
2323
},
2424
"directory": null

.github/workflows/build-python.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ name: Build Python Package
66
on:
77
pull_request:
88
paths:
9-
- 'src/**/*.py'
10-
- 'tests/**/*.py' # Test files shouldn't trigger *build* unless needed? Consider paths carefully.
11-
- 'noxfile.py' # Build task config
12-
- 'pyproject.toml' # Packaging config (metadata, deps, build system)
13-
- '.github/workflows/build-package-python.yml' # This workflow file
14-
- 'rust/**/*.rs'
9+
- "src/**/*.py"
10+
- "tests/**/*.py" # Test files shouldn't trigger *build* unless needed? Consider paths carefully.
11+
- "noxfile.py" # Build task config
12+
- "pyproject.toml" # Packaging config (metadata, deps, build system)
13+
- ".github/workflows/build-package-python.yml" # This workflow file
14+
- "rust/**/*.rs"
1515
# Add paths to other relevant build-related files (e.g., manifest files)
1616
push:
1717
branches:
1818
- main
1919
- master
2020
paths:
21-
- 'src/**/*.py'
22-
- 'tests/**/*.py'
23-
- 'noxfile.py'
24-
- 'pyproject.toml'
25-
- '.github/workflows/build-package-python.yml'
21+
- "src/**/*.py"
22+
- "tests/**/*.py"
23+
- "noxfile.py"
24+
- "pyproject.toml"
25+
- ".github/workflows/build-package-python.yml"
2626

2727
# This workflow is also triggered explicitly as part of the CD workflow.
2828
# workflow_dispatch: # Remove if only triggered by push/PR or other workflows
@@ -55,6 +55,6 @@ jobs:
5555
- name: Upload built packages artifact
5656
uses: actions/upload-artifact@v4
5757
with:
58-
name: distribution-packages-{{ github.event.inputs.tag }}
58+
name: distribution-packages-${{ github.event.inputs.tag }}
5959
path: dist/
6060
retention-days: 7

.github/workflows/bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Check out
1515
uses: actions/checkout@v4
1616
with:
17-
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
17+
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
1818
fetch-depth: 0
1919
- name: Create bump and changelog
2020
uses: commitizen-tools/commitizen-action@master

.github/workflows/docs-build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ name: Build Documentation
66
on:
77
pull_request:
88
paths:
9-
- 'docs/**' # Documentation source files
10-
- 'src/**/*.py' # Code changes might impact API docs
11-
- 'noxfile.py'
12-
- 'pyproject.toml'
13-
- '.github/workflows/docs-build.yml'
9+
- "docs/**" # Documentation source files
10+
- "src/**/*.py" # Code changes might impact API docs
11+
- "noxfile.py"
12+
- "pyproject.toml"
13+
- ".github/workflows/docs-build.yml"
1414
# Include relevant config files that affect docs build
15-
- '.ruff.toml' # Affects docstrings via linting
16-
- 'pyrightconfig.json' # Affects type hints in docs
15+
- ".ruff.toml" # Affects docstrings via linting
16+
- "pyrightconfig.json" # Affects type hints in docs
1717

1818
push:
1919
branches:
2020
- main
2121
- master
2222
paths:
23-
- 'docs/**'
24-
- 'src/**/*.py'
25-
- 'noxfile.py'
26-
- 'pyproject.toml'
27-
- '.github/workflows/docs-build.yml'
23+
- "docs/**"
24+
- "src/**/*.py"
25+
- "noxfile.py"
26+
- "pyproject.toml"
27+
- ".github/workflows/docs-build.yml"
2828

2929
workflow_dispatch:
3030

.github/workflows/lint-global.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@ name: Lint Global Configuration
66
on:
77
pull_request:
88
paths:
9-
- '**.yaml'
10-
- '**.toml'
11-
- '.editorconfig'
12-
- '.gitignore'
13-
- '.pre-commit-config.yaml'
14-
- 'Dockerfile'
15-
- 'compose.yaml'
16-
- '.github/workflows/lint-global.yml'
17-
- 'docs/**.md'
18-
- 'docs/**.rst'
19-
- 'docs/**/*.py'
9+
- "**.yaml"
10+
- "**.toml"
11+
- ".editorconfig"
12+
- ".gitignore"
13+
- ".pre-commit-config.yaml"
14+
- "Dockerfile"
15+
- "compose.yaml"
16+
- ".github/workflows/lint-global.yml"
17+
- "docs/**.md"
18+
- "docs/**.rst"
19+
- "docs/**/*.py"
2020
push:
2121
branches:
2222
- main
2323
- master
2424
paths:
25-
- '**.yaml'
26-
- '**.toml'
27-
- '.editorconfig'
28-
- '.gitignore'
29-
- '.pre-commit-config.yaml'
30-
- 'Dockerfile'
31-
- 'compose.yaml'
32-
- '.github/workflows/lint-global.yml'
33-
- 'docs/**'
25+
- "**.yaml"
26+
- "**.toml"
27+
- ".editorconfig"
28+
- ".gitignore"
29+
- ".pre-commit-config.yaml"
30+
- "Dockerfile"
31+
- "compose.yaml"
32+
- ".github/workflows/lint-global.yml"
33+
- "docs/**"
3434

3535
workflow_dispatch:
3636

.github/workflows/lint-python.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ name: Lint Python Code
66
on:
77
pull_request:
88
paths:
9-
- 'src/**/*.py'
10-
- 'tests/**/*.py'
11-
- 'noxfile.py'
12-
- 'pyproject.toml'
13-
- '.ruff.toml'
14-
- '.pydocstyle'
15-
- '.github/workflows/lint-python.yml'
9+
- "src/**/*.py"
10+
- "tests/**/*.py"
11+
- "noxfile.py"
12+
- "pyproject.toml"
13+
- ".ruff.toml"
14+
- ".pydocstyle"
15+
- ".github/workflows/lint-python.yml"
1616
push:
1717
branches:
1818
- main
1919
- master
2020
paths:
21-
- 'src/**/*.py'
22-
- 'tests/**/*.py'
23-
- 'noxfile.py'
24-
- 'pyproject.toml'
25-
- '.ruff.toml'
26-
- '.pydocstyle'
27-
- '.github/workflows/lint-python.yml'
21+
- "src/**/*.py"
22+
- "tests/**/*.py"
23+
- "noxfile.py"
24+
- "pyproject.toml"
25+
- ".ruff.toml"
26+
- ".pydocstyle"
27+
- ".github/workflows/lint-python.yml"
2828

2929
workflow_dispatch:
3030

.github/workflows/security-python.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ name: Check Python Code Security
66
on:
77
pull_request:
88
paths:
9-
- 'src/**/*.py'
10-
- 'tests/**/*.py'
11-
- 'noxfile.py'
12-
- 'pyproject.toml'
13-
- '.bandit'
14-
- '.ruff.toml'
15-
- '.github/workflows/security-python.yml'
9+
- "src/**/*.py"
10+
- "tests/**/*.py"
11+
- "noxfile.py"
12+
- "pyproject.toml"
13+
- ".bandit"
14+
- ".ruff.toml"
15+
- ".github/workflows/security-python.yml"
1616
push:
1717
branches:
1818
- main

.github/workflows/test-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
36-
os: [ubuntu-latest, windows-latest, macos-latest]
35+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
36+
os: [ ubuntu-latest, windows-latest, macos-latest ]
3737

3838
steps:
3939
- name: Checkout code

.github/workflows/typecheck-python.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ name: Type Check Python Code
66
on:
77
pull_request:
88
paths:
9-
- 'src/**/*.py'
10-
- 'tests/**/*.py'
11-
- 'noxfile.py'
12-
- 'pyproject.toml'
13-
- 'pyrightconfig.json'
14-
- '.github/workflows/typecheck-python.yml'
15-
- '**/*.pyi' # Include explicit type stub files
9+
- "src/**/*.py"
10+
- "tests/**/*.py"
11+
- "noxfile.py"
12+
- "pyproject.toml"
13+
- "pyrightconfig.json"
14+
- ".github/workflows/typecheck-python.yml"
15+
- "**/*.pyi" # Include explicit type stub files
1616
push:
1717
branches:
1818
- main
1919
- master
2020
paths:
21-
- 'src/**/*.py'
22-
- 'tests/**/*.py'
23-
- 'noxfile.py'
24-
- 'pyproject.toml'
25-
- 'pyrightconfig.json'
26-
- '.github/workflows/typecheck-python.yml'
27-
- '**/*.pyi'
21+
- "src/**/*.py"
22+
- "tests/**/*.py"
23+
- "noxfile.py"
24+
- "pyproject.toml"
25+
- "pyrightconfig.json"
26+
- ".github/workflows/typecheck-python.yml"
27+
- "**/*.pyi"
2828

2929
workflow_dispatch:
3030

0 commit comments

Comments
 (0)