Skip to content

Commit

Permalink
Sync with template
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Jul 3, 2024
1 parent 2d64a61 commit 7360e94
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
1 change: 0 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"commitConvention": "angular",
"commitType": "docs",
"contributorsPerLine": 7,
"files": [
"CONTRIBUTORS.md",
Expand Down
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 10 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
defaults:
run:
shell: "pwsh"
env:
UV_SYSTEM_PYTHON: "true"
jobs:
release:
permissions:
Expand All @@ -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/**"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion scripts/boilerdaq_tools/add_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7360e94

Please sign in to comment.