Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pypa/gh-action-pypi-publish from 1.6.4 to 1.8.4 #11

Merged
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 .github/workflows/distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@v1.6.4
- uses: pypa/gh-action-pypi-publish@v1.8.4
with:
password: ${{ secrets.pypi_password }}
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:
- id: setup-cfg-fmt

- repo: https://github.com/PyCQA/isort
rev: "5.11.4"
rev: "5.12.0"
hooks:
- id: isort

Expand All @@ -40,19 +40,19 @@ repos:
args: ["--py36-plus"]

- repo: https://github.com/psf/black
rev: "22.12.0"
rev: "23.3.0"
hooks:
- id: black

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v0.991"
rev: "v1.1.1"
hooks:
- id: mypy
files: src
stages: [manual]

- repo: https://github.com/hadialqattan/pycln
rev: "v2.1.2"
rev: "v2.1.3"
hooks:
- id: pycln
args: ["--all"]
Expand Down Expand Up @@ -83,7 +83,7 @@ repos:
stages: [manual]

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.2"
rev: "v2.2.4"
hooks:
- id: codespell
args: ["-L", "nd,unparseable,compiletime"]
Expand All @@ -94,15 +94,15 @@ repos:
- id: shellcheck

- repo: https://github.com/pre-commit/pygrep-hooks
rev: "v1.9.0"
rev: "v1.10.0"
hooks:
- id: python-no-log-warn
- id: rst-backticks
- id: rst-directive-colons
- id: rst-inline-touching-normal

- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.0-alpha.4"
rev: "v3.0.0-alpha.6"
hooks:
- id: prettier
types_or: [json]
3 changes: 1 addition & 2 deletions src/legend_testdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""
"""
"""Bare-bones Python package to access LEGEND test data files."""

from legend_testdata._version import version as __version__
from legend_testdata.core import LegendTestData
Expand Down
1 change: 0 additions & 1 deletion src/legend_testdata/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def __init__(self):
self._repo: Repo = self._init_testdata_repo()

def _init_testdata_repo(self):

if not path.isdir(self._repo_path):
os.mkdir(self._repo_path)

Expand Down