diff --git a/.cookiecutter.json b/.cookiecutter.json index 720d6be..53bdedc 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "87a677683e54c30ad9ec09aba0c43a3572e4c215", + "_commit": "e3cbc298c409f8e8c7b2bcc13a24e6d4945a3d0e", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", "add_rust_extension": false, "author": "Kyle Oliver", diff --git a/.cruft.json b/.cruft.json index 067fe26..e32b0d4 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "87a677683e54c30ad9ec09aba0c43a3572e4c215", + "commit": "e3cbc298c409f8e8c7b2bcc13a24e6d4945a3d0e", "checkout": null, "context": { "cookiecutter": { @@ -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 diff --git a/.github/workflows/build-python.yml b/.github/workflows/build-python.yml index 4787ba7..18228a5 100644 --- a/.github/workflows/build-python.yml +++ b/.github/workflows/build-python.yml @@ -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: @@ -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 @@ -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