diff --git a/.all-contributorsrc b/.all-contributorsrc index bb851cb..139c9b6 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -1,6 +1,5 @@ { "commitConvention": "angular", - "commitType": "docs", "contributorsPerLine": 7, "files": [ "CONTRIBUTORS.md", diff --git a/.copier-answers.yml b/.copier-answers.yml index ad5365b..6cff8cd 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 2024.1.1-22-g4c3d14c +_commit: 2024.1.1-29-g1573619 _src_path: gh:blakeNaccarato/copier-python actions_runner: ubuntu-22.04 active: true diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 06b7c88..dd79f34 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -58,7 +58,16 @@ "pythonREPLSmartSend", "pythonTestAdapter", "pythonTerminalEnvVarActivation" - ] + ], + // ? Not picked up in workspace settings in Codespaces + "[python]": { + "editor.defaultFormatter": "charliermarsh.ruff", + "editor.wordWrap": "off" + }, + "[ipynb]": { + "editor.defaultFormatter": "charliermarsh.ruff", + "editor.wordWrap": "off" + } }, "extensions": [ "aaron-bond.better-comments@3.0.2", diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bccfea..d419f2b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,8 +9,6 @@ on: defaults: run: shell: "pwsh" -env: - UV_SYSTEM_PYTHON: "true" jobs: release: permissions: @@ -31,7 +29,7 @@ jobs: with: python-version: "${{ matrix.python }}" - run: "scripts/Sync-Py.ps1 -Release" - - run: "python -m build --installer uv" + - run: ". scripts/Initialize-Shell.ps1; python -m build --installer uv" - uses: actions/attest-build-provenance@bdd51370e0416ac948727f861e03c2f05d32d78e # v1.3.2 with: subject-path: "dist/**" @@ -40,4 +38,7 @@ jobs: GITHUB_TOKEN: "${{ github.token }}" - uses: "pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0" # v1.9.0 changerelease: + needs: "release" + permissions: + contents: "write" uses: "./.github/workflows/changerelease.yml" diff --git a/docs/index.md b/docs/index.md index 919e884..2dbd521 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# `boilerdaq` +# boilerdaq [![All Contributors](https://img.shields.io/github/all-contributors/softboiler/boilerdaq?color=ee8449&style=flat-square)](../README.md#contributors) diff --git a/scripts/boilerdaq_tools/add_changes.py b/scripts/boilerdaq_tools/add_changes.py index b06d320..1093f69 100644 --- a/scripts/boilerdaq_tools/add_changes.py +++ b/scripts/boilerdaq_tools/add_changes.py @@ -96,7 +96,7 @@ def query_gh_issue( ) -> dict[str, Any]: """Query GitHub for an issue.""" result = run( - [ # noqa: S603, S607 + [ # noqa: S607, S603 "gh", "api", "graphql",