From 2d25701f13c580d7626c1f5f6bb6ad46a322976e Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Fri, 23 Feb 2024 09:28:37 +0000 Subject: [PATCH] Update copyright headers --- .pre-commit-hooks/check-changelog-entries.py | 2 +- .pre-commit-hooks/copyright-headers.py | 2 +- .pre-commit-hooks/sort-pylint-spelling-words.py | 2 +- docs/conf.py | 2 +- noxfile.py | 2 +- setup.py | 2 +- src/pytestshellutils/__init__.py | 2 +- src/pytestshellutils/customtypes.py | 2 +- src/pytestshellutils/exceptions.py | 2 +- src/pytestshellutils/plugin.py | 2 +- src/pytestshellutils/shell.py | 2 +- src/pytestshellutils/utils/__init__.py | 2 +- src/pytestshellutils/utils/ports.py | 2 +- src/pytestshellutils/utils/processes.py | 2 +- src/pytestshellutils/utils/socket.py | 2 +- src/pytestshellutils/utils/time.py | 2 +- tests/conftest.py | 2 +- tests/functional/shell/test_daemon.py | 2 +- tests/functional/shell/test_fixture.py | 2 +- tests/functional/shell/test_script_subprocess.py | 2 +- tests/functional/shell/test_subprocess.py | 2 +- tests/functional/test_exceptions.py | 2 +- tests/support/coverage/sitecustomize.py | 2 +- tests/unit/customtypes/test_callback.py | 2 +- tests/unit/utils/processes/test_processresult.py | 2 +- tests/unit/utils/processes/test_processresult_matcher.py | 2 +- tests/unit/utils/test_format_callback_to_string.py | 2 +- tests/unit/utils/test_ports.py | 2 +- tests/unit/utils/test_time.py | 2 +- tools/__init__.py | 2 +- tools/pre_commit.py | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.pre-commit-hooks/check-changelog-entries.py b/.pre-commit-hooks/check-changelog-entries.py index 7e5a8c0..656a347 100755 --- a/.pre-commit-hooks/check-changelog-entries.py +++ b/.pre-commit-hooks/check-changelog-entries.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # pylint: disable=invalid-name,missing-module-docstring,missing-function-docstring diff --git a/.pre-commit-hooks/copyright-headers.py b/.pre-commit-hooks/copyright-headers.py index eb0fedb..aa65dee 100644 --- a/.pre-commit-hooks/copyright-headers.py +++ b/.pre-commit-hooks/copyright-headers.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # pylint: disable=invalid-name,missing-module-docstring,missing-function-docstring diff --git a/.pre-commit-hooks/sort-pylint-spelling-words.py b/.pre-commit-hooks/sort-pylint-spelling-words.py index c6c8c50..4f06641 100755 --- a/.pre-commit-hooks/sort-pylint-spelling-words.py +++ b/.pre-commit-hooks/sort-pylint-spelling-words.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # pylint: skip-file import pathlib diff --git a/docs/conf.py b/docs/conf.py index baa7d36..f23f10f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # Configuration file for the Sphinx documentation builder. diff --git a/noxfile.py b/noxfile.py index 8cf0543..74c20fd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # pylint: disable=import-error,protected-access,line-too-long diff --git a/setup.py b/setup.py index 325bbf4..0ff22c3 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import setuptools diff --git a/src/pytestshellutils/__init__.py b/src/pytestshellutils/__init__.py index 7800628..76891c6 100644 --- a/src/pytestshellutils/__init__.py +++ b/src/pytestshellutils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # type: ignore diff --git a/src/pytestshellutils/customtypes.py b/src/pytestshellutils/customtypes.py index 738318d..127ff06 100644 --- a/src/pytestshellutils/customtypes.py +++ b/src/pytestshellutils/customtypes.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Custom Types. diff --git a/src/pytestshellutils/exceptions.py b/src/pytestshellutils/exceptions.py index 64c0314..b39ecc1 100644 --- a/src/pytestshellutils/exceptions.py +++ b/src/pytestshellutils/exceptions.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Pytest Shell Utilities related exceptions. diff --git a/src/pytestshellutils/plugin.py b/src/pytestshellutils/plugin.py index 3babd31..841b297 100644 --- a/src/pytestshellutils/plugin.py +++ b/src/pytestshellutils/plugin.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # """ diff --git a/src/pytestshellutils/shell.py b/src/pytestshellutils/shell.py index bb6d556..eb73ae0 100644 --- a/src/pytestshellutils/shell.py +++ b/src/pytestshellutils/shell.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Shelling class implementations. diff --git a/src/pytestshellutils/utils/__init__.py b/src/pytestshellutils/utils/__init__.py index 2b765d8..6849c5d 100644 --- a/src/pytestshellutils/utils/__init__.py +++ b/src/pytestshellutils/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import inspect diff --git a/src/pytestshellutils/utils/ports.py b/src/pytestshellutils/utils/ports.py index 174c939..7a83778 100644 --- a/src/pytestshellutils/utils/ports.py +++ b/src/pytestshellutils/utils/ports.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Ports related utility functions. diff --git a/src/pytestshellutils/utils/processes.py b/src/pytestshellutils/utils/processes.py index c849889..10be1dc 100644 --- a/src/pytestshellutils/utils/processes.py +++ b/src/pytestshellutils/utils/processes.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Process related utilities. diff --git a/src/pytestshellutils/utils/socket.py b/src/pytestshellutils/utils/socket.py index e235dd7..10beca6 100644 --- a/src/pytestshellutils/utils/socket.py +++ b/src/pytestshellutils/utils/socket.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # pylint: disable=wildcard-import,unused-wildcard-import diff --git a/src/pytestshellutils/utils/time.py b/src/pytestshellutils/utils/time.py index bec92be..92bd7c3 100644 --- a/src/pytestshellutils/utils/time.py +++ b/src/pytestshellutils/utils/time.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # # pylint: disable=wildcard-import,unused-wildcard-import diff --git a/tests/conftest.py b/tests/conftest.py index dd5b83d..6196218 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import functools diff --git a/tests/functional/shell/test_daemon.py b/tests/functional/shell/test_daemon.py index 3a14116..8f2f32d 100644 --- a/tests/functional/shell/test_daemon.py +++ b/tests/functional/shell/test_daemon.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import functools diff --git a/tests/functional/shell/test_fixture.py b/tests/functional/shell/test_fixture.py index 0fbd119..6bc6042 100644 --- a/tests/functional/shell/test_fixture.py +++ b/tests/functional/shell/test_fixture.py @@ -1,4 +1,4 @@ -# Copyright 2022-2023 VMware, Inc. +# Copyright 2022-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import pathlib diff --git a/tests/functional/shell/test_script_subprocess.py b/tests/functional/shell/test_script_subprocess.py index 312d1ab..3bbc6d5 100644 --- a/tests/functional/shell/test_script_subprocess.py +++ b/tests/functional/shell/test_script_subprocess.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import os diff --git a/tests/functional/shell/test_subprocess.py b/tests/functional/shell/test_subprocess.py index 97c69a6..9bb6d1f 100644 --- a/tests/functional/shell/test_subprocess.py +++ b/tests/functional/shell/test_subprocess.py @@ -1,4 +1,4 @@ -# Copyright 2022-2023 VMware, Inc. +# Copyright 2022-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import os diff --git a/tests/functional/test_exceptions.py b/tests/functional/test_exceptions.py index 9c1e57c..a170062 100644 --- a/tests/functional/test_exceptions.py +++ b/tests/functional/test_exceptions.py @@ -1,4 +1,4 @@ -# Copyright 2022-2023 VMware, Inc. +# Copyright 2022-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 import textwrap diff --git a/tests/support/coverage/sitecustomize.py b/tests/support/coverage/sitecustomize.py index 5f36324..75f927a 100644 --- a/tests/support/coverage/sitecustomize.py +++ b/tests/support/coverage/sitecustomize.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # try: diff --git a/tests/unit/customtypes/test_callback.py b/tests/unit/customtypes/test_callback.py index e7e37bd..db482f0 100644 --- a/tests/unit/customtypes/test_callback.py +++ b/tests/unit/customtypes/test_callback.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # from typing import Any diff --git a/tests/unit/utils/processes/test_processresult.py b/tests/unit/utils/processes/test_processresult.py index 3c6441c..6a344de 100644 --- a/tests/unit/utils/processes/test_processresult.py +++ b/tests/unit/utils/processes/test_processresult.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Test ``pytestshellutils.utils.processes.ProcessResult``. diff --git a/tests/unit/utils/processes/test_processresult_matcher.py b/tests/unit/utils/processes/test_processresult_matcher.py index 8b0e652..d588314 100644 --- a/tests/unit/utils/processes/test_processresult_matcher.py +++ b/tests/unit/utils/processes/test_processresult_matcher.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Test ``pytestshellutils.utils.processes.ProcessResult``. diff --git a/tests/unit/utils/test_format_callback_to_string.py b/tests/unit/utils/test_format_callback_to_string.py index e5579d5..34fcb32 100644 --- a/tests/unit/utils/test_format_callback_to_string.py +++ b/tests/unit/utils/test_format_callback_to_string.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # from pytestshellutils.utils import format_callback_to_string diff --git a/tests/unit/utils/test_ports.py b/tests/unit/utils/test_ports.py index 61b6b16..30e2d39 100644 --- a/tests/unit/utils/test_ports.py +++ b/tests/unit/utils/test_ports.py @@ -1,4 +1,4 @@ -# Copyright 2021-2023 VMware, Inc. +# Copyright 2021-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ Test the port related utilities. diff --git a/tests/unit/utils/test_time.py b/tests/unit/utils/test_time.py index a1e2b31..a5da679 100644 --- a/tests/unit/utils/test_time.py +++ b/tests/unit/utils/test_time.py @@ -1,4 +1,4 @@ -# Copyright 2022-2023 VMware, Inc. +# Copyright 2022-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import time diff --git a/tools/__init__.py b/tools/__init__.py index 1d99256..c979555 100644 --- a/tools/__init__.py +++ b/tools/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 VMware, Inc. +# Copyright 2023-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 # import ptscripts diff --git a/tools/pre_commit.py b/tools/pre_commit.py index 857feb5..47eb481 100644 --- a/tools/pre_commit.py +++ b/tools/pre_commit.py @@ -1,4 +1,4 @@ -# Copyright 2023 VMware, Inc. +# Copyright 2023-2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 """ These commands are used by pre-commit.