mirror of
https://github.com/mandiant/capa.git
synced 2026-06-12 11:01:31 -07:00
build(deps-dev): bump mypy from 1.20.0 to 2.1.0 (#3070)
* build(deps-dev): bump mypy from 1.20.0 to 2.1.0 Bumps [mypy](https://github.com/python/mypy) from 1.20.0 to 2.1.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.20.0...v2.1.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 2.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix mypy lints --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com>
This commit is contained in:
+1
-1
@@ -134,7 +134,7 @@ dev = [
|
||||
"pytest-sugar==1.1.1",
|
||||
"pytest-instafail==0.5.0",
|
||||
"ruff==0.15.0",
|
||||
"mypy==1.20.0",
|
||||
"mypy==2.1.0",
|
||||
"mypy-protobuf==5.1.0",
|
||||
"PyGithub==2.9.0",
|
||||
"bump-my-version==1.3.0",
|
||||
|
||||
@@ -82,7 +82,7 @@ unsupported = [
|
||||
# - it would be technically possible to get the "basic blocks" working, but the rules contain mostly other non supported statements in there => not worth the effort.
|
||||
|
||||
# collect all converted rules to be able to check if we have needed sub rules for match:
|
||||
converted_rules = []
|
||||
converted_rules: list[str] = []
|
||||
|
||||
default_tags = "CAPA "
|
||||
|
||||
@@ -91,7 +91,7 @@ min_rounds = 5
|
||||
|
||||
unsupported_capa_rules = Path("unsupported_capa_rules.yml").open("wb")
|
||||
unsupported_capa_rules_names = Path("unsupported_capa_rules.txt").open("wb")
|
||||
unsupported_capa_rules_list = []
|
||||
unsupported_capa_rules_list: list[str] = []
|
||||
|
||||
condition_header = """
|
||||
capa_pe_file and
|
||||
|
||||
Reference in New Issue
Block a user