From 4b16011023dd5ed9c80cba1137d88da66e42e769 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 13:26:52 +0000 Subject: [PATCH 1/2] chore(deps-dev): Update mypy requirement from 1.17.1 to 1.18.1 Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.17.1...v1.18.1) --- updated-dependencies: - dependency-name: mypy dependency-version: 1.18.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0c54b317..00ba5478 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,7 @@ pep8-naming = "0.15.1" flake8-logging = "1.8.0" isort = "6.0.1" autopep8 = "2.3.2" -mypy = "1.17.1" +mypy = "1.18.1" bandit = "1.8.6" tomli = { version = "^2.0.1", python = "<3.11" } tox = "4.30.2" From a88c255e216a3787ba1ce659a769b621da93f6a0 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Tue, 16 Sep 2025 08:57:28 +0200 Subject: [PATCH 2/2] refactor: removed unused annotation Signed-off-by: Jan Kowalleck --- cyclonedx_py/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyclonedx_py/__main__.py b/cyclonedx_py/__main__.py index 366384f7..184a8a66 100644 --- a/cyclonedx_py/__main__.py +++ b/cyclonedx_py/__main__.py @@ -15,7 +15,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) OWASP Foundation. All Rights Reserved. -__all__ = [ # type:ignore[var-annotated] +__all__ = [ # There is no stable/public API. # However, you might call the stable CLI instead, like so: # from sys import executable