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

[pre-commit.ci] pre-commit autoupdate #76

Merged
merged 2 commits into from
Jul 25, 2023
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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
#

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.12.2
rev: v0.13
hooks:
- id: validate-pyproject
fail_fast: true
Expand Down Expand Up @@ -47,7 +47,7 @@ repos:
#

- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.2.0
rev: v2.4.0
hooks:
- id: setup-cfg-fmt
args: ["--include-version-classifiers"]
Expand All @@ -64,19 +64,19 @@ repos:
- id: rm-unneeded-f-str

- repo: https://github.com/asottile/pyupgrade
rev: v3.4.0
rev: v3.9.0
hooks:
- id: pyupgrade
args: [--py38-plus]

# Last modifier: Coding Standard
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.7.0
hooks:
- id: black

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v16.0.3
rev: v16.0.6
hooks:
- id: clang-format
files: pypcode/pypcode_native.cpp
Expand Down Expand Up @@ -104,13 +104,13 @@ repos:
- id: check-builtin-literals
- id: check-docstring-first

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.267
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.280
hooks:
- id: ruff

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
rev: v1.4.1
hooks:
- id: mypy

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = Machine code disassembly and IR translation library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/angr/pypcode
license_file = LICENSE.txt
license_files = LICENSE.txt
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Expand Down