Skip to content

Commit

Permalink
build(deps): bump sigstore/gh-action-sigstore-python from 2.1.1 to 3.…
Browse files Browse the repository at this point in the history
…0.0 in the github-actions group (#113)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: William Woodruff <[email protected]>
  • Loading branch information
dependabot[bot] and woodruffw authored Jul 16, 2024
1 parent e543a9e commit 18e635d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: pypa/[email protected]

- name: sign
uses: sigstore/gh-action-sigstore-python@v2.1.1
uses: sigstore/gh-action-sigstore-python@v3.0.0
with:
inputs: ./dist/*.tar.gz ./dist/*.whl
release-signing-artifacts: true
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,15 @@ codegen: env/pyvenv.cfg
lint: env/pyvenv.cfg
. env/bin/activate && \
ruff format --check $(ALL_PY_SRCS) && \
ruff $(ALL_PY_SRCS) && \
mypy $(PY_MODULE)
# TODO: re-enable once fixed on Python 3.12+
# interrogate -c pyproject.toml .
ruff check $(ALL_PY_SRCS) && \
mypy $(PY_MODULE) && \
interrogate -c pyproject.toml .

.PHONY: reformat
reformat:
. env/bin/activate && \
ruff format $(ALL_PY_SRCS) && \
ruff --fix $(ALL_PY_SRCS)
ruff check --fix $(ALL_PY_SRCS)

.PHONY: test tests
test tests: env/pyvenv.cfg
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,6 @@ exclude_dirs = ["./test"]

[tool.ruff]
line-length = 100

[tool.ruff.lint]
select = ["E", "F", "W", "UP", "I", "N", "YTT", "BLE", "C4", "SIM"]

0 comments on commit 18e635d

Please sign in to comment.