Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_commit": "87a677683e54c30ad9ec09aba0c43a3572e4c215",
"_commit": "e3cbc298c409f8e8c7b2bcc13a24e6d4945a3d0e",
"_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": "87a677683e54c30ad9ec09aba0c43a3572e4c215",
"commit": "e3cbc298c409f8e8c7b2bcc13a24e6d4945a3d0e",
"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": "87a677683e54c30ad9ec09aba0c43a3572e4c215"
"_commit": "e3cbc298c409f8e8c7b2bcc13a24e6d4945a3d0e"
}
},
"directory": null
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- "tests/**/*.py" # Test files shouldn't trigger *build* unless needed? Consider paths carefully.
- "noxfile.py" # Build task config
- "pyproject.toml" # Packaging config (metadata, deps, build system)
- ".github/workflows/build-package-python.yml" # This workflow file
- ".github/workflows/build-python.yml"
- "rust/**/*.rs"
# Add paths to other relevant build-related files (e.g., manifest files)
push:
Expand All @@ -22,7 +22,7 @@ on:
- "tests/**/*.py"
- "noxfile.py"
- "pyproject.toml"
- ".github/workflows/build-package-python.yml"
- ".github/workflows/build-python.yml"

# This workflow is also triggered explicitly as part of the CD workflow.
# workflow_dispatch: # Remove if only triggered by push/PR or other workflows
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".github\workflows\.python-version"
python-version-file: ".github/workflows/.python-version"

- name: Run package build
run: uvx nox -s build-python
Expand Down