Skip to content
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/readme_example.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

# This workflow exists for several purposes:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
- id: "update-headers"

- repo: "https://github.com/psf/black-pre-commit-mirror"
rev: "23.12.0"
rev: "23.12.1"
hooks:
- id: "black"

Expand All @@ -34,7 +34,7 @@ repos:
- id: "isort"

- repo: "https://github.com/pycqa/flake8"
rev: "6.1.0"
rev: "7.0.0"
hooks:
- id: "flake8"
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
..
This file is a part of the detect-pythons project.
https://github.com/kurtmckee/detect-pythons
Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
SPDX-License-Identifier: MIT

..
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
..
This file is a part of the detect-pythons project.
https://github.com/kurtmckee/detect-pythons
Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
SPDX-License-Identifier: MIT

Detect Python interpreters
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

author: "Kurt McKee"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ new_fragment_template = "file: fragment-template.rst.txt"
template = """
This file is a part of the detect-pythons project.
https://github.com/kurtmckee/detect-pythons
Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
Copyright 2023-{{ year }} Kurt McKee <contactme@kurtmckee.org>
SPDX-License-Identifier: MIT
"""
exclusions = [
Expand Down
2 changes: 1 addition & 1 deletion src/detect_pythons/detector.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

# Search paths in $PATH for Python interpreters.
Expand Down
2 changes: 1 addition & 1 deletion src/detect_pythons/detector.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

IDENTIFY_PY="${GITHUB_ACTION_PATH}/src/detect_pythons/identify.py"
Expand Down
2 changes: 1 addition & 1 deletion src/detect_pythons/identify.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion src/detect_pythons/sync_readme_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

import pathlib
Expand Down
2 changes: 1 addition & 1 deletion tests/test_identify.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

import platform
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sync_readme_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

import unittest.mock
Expand Down