diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9ea5eda..a84e4bd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -80,6 +80,6 @@ repos: - id: "check-dependabot" - repo: "https://github.com/rhysd/actionlint" - rev: "v1.7.4" + rev: "v1.7.6" hooks: - id: "actionlint" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 04e389f..1238b67 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ .. This file is a part of the detect-pythons project. https://github.com/kurtmckee/detect-pythons - Copyright 2023-2024 Kurt McKee + Copyright 2023-2025 Kurt McKee SPDX-License-Identifier: MIT .. diff --git a/README.rst b/README.rst index 1688f82..aaa53c0 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ .. This file is a part of the detect-pythons project. https://github.com/kurtmckee/detect-pythons - Copyright 2023-2024 Kurt McKee + Copyright 2023-2025 Kurt McKee SPDX-License-Identifier: MIT Detect Python interpreters diff --git a/src/detect_pythons/detector.ps1 b/src/detect_pythons/detector.ps1 index 49b36f1..7f4f0e7 100644 --- a/src/detect_pythons/detector.ps1 +++ b/src/detect_pythons/detector.ps1 @@ -1,6 +1,6 @@ # This file is a part of the detect-pythons project. # https://github.com/kurtmckee/detect-pythons -# Copyright 2023-2024 Kurt McKee +# Copyright 2023-2025 Kurt McKee # SPDX-License-Identifier: MIT # Search paths in $PATH for Python interpreters. diff --git a/src/detect_pythons/detector.sh b/src/detect_pythons/detector.sh index a9d6544..9a0f426 100644 --- a/src/detect_pythons/detector.sh +++ b/src/detect_pythons/detector.sh @@ -1,6 +1,6 @@ # This file is a part of the detect-pythons project. # https://github.com/kurtmckee/detect-pythons -# Copyright 2023-2024 Kurt McKee +# Copyright 2023-2025 Kurt McKee # SPDX-License-Identifier: MIT IDENTIFY_PY="${GITHUB_ACTION_PATH}/src/detect_pythons/identify.py" diff --git a/src/detect_pythons/identify.py b/src/detect_pythons/identify.py index 3235e31..57497c2 100644 --- a/src/detect_pythons/identify.py +++ b/src/detect_pythons/identify.py @@ -1,6 +1,6 @@ # This file is a part of the detect-pythons project. # https://github.com/kurtmckee/detect-pythons -# Copyright 2023-2024 Kurt McKee +# Copyright 2023-2025 Kurt McKee # SPDX-License-Identifier: MIT from __future__ import print_function diff --git a/src/detect_pythons/sync_readme_example.py b/src/detect_pythons/sync_readme_example.py index 3447207..cb52d3a 100644 --- a/src/detect_pythons/sync_readme_example.py +++ b/src/detect_pythons/sync_readme_example.py @@ -1,6 +1,6 @@ # This file is a part of the detect-pythons project. # https://github.com/kurtmckee/detect-pythons -# Copyright 2023-2024 Kurt McKee +# Copyright 2023-2025 Kurt McKee # SPDX-License-Identifier: MIT import pathlib diff --git a/tests/test_identify.py b/tests/test_identify.py index 9f6b807..6a33abb 100644 --- a/tests/test_identify.py +++ b/tests/test_identify.py @@ -1,6 +1,6 @@ # This file is a part of the detect-pythons project. # https://github.com/kurtmckee/detect-pythons -# Copyright 2023-2024 Kurt McKee +# Copyright 2023-2025 Kurt McKee # SPDX-License-Identifier: MIT import platform diff --git a/tests/test_sync_readme_example.py b/tests/test_sync_readme_example.py index 6fb9cc6..9e888fc 100644 --- a/tests/test_sync_readme_example.py +++ b/tests/test_sync_readme_example.py @@ -1,6 +1,6 @@ # This file is a part of the detect-pythons project. # https://github.com/kurtmckee/detect-pythons -# Copyright 2023-2024 Kurt McKee +# Copyright 2023-2025 Kurt McKee # SPDX-License-Identifier: MIT import unittest.mock