diff --git a/setup.py b/setup.py index 341b391..9170e86 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 """ diff --git a/src/__init__.py b/src/__init__.py index ca6cbb7..0fd6653 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/backend/__init__.py b/src/backend/__init__.py index f43826d..f42a894 100644 --- a/src/backend/__init__.py +++ b/src/backend/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 from .backend_ga import * diff --git a/src/backend/backend.py b/src/backend/backend.py index 7fd7dd7..ec6088f 100644 --- a/src/backend/backend.py +++ b/src/backend/backend.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import abc diff --git a/src/backend/backend_ga.py b/src/backend/backend_ga.py index 1721986..5d98f85 100644 --- a/src/backend/backend_ga.py +++ b/src/backend/backend_ga.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import logging as log diff --git a/src/backend/backend_ga4.py b/src/backend/backend_ga4.py index 3fc81d0..cf8b89c 100644 --- a/src/backend/backend_ga4.py +++ b/src/backend/backend_ga4.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import json diff --git a/src/backend/backend_ga4_test.py b/src/backend/backend_ga4_test.py index 2b38763..727fc4c 100644 --- a/src/backend/backend_ga4_test.py +++ b/src/backend/backend_ga4_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/backend/backend_ga_test.py b/src/backend/backend_ga_test.py index 6c05a27..4224189 100644 --- a/src/backend/backend_ga_test.py +++ b/src/backend/backend_ga_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/main.py b/src/main.py index 6288654..745d687 100644 --- a/src/main.py +++ b/src/main.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import logging as log diff --git a/src/main_test.py b/src/main_test.py index 54d0be1..29d79de 100644 --- a/src/main_test.py +++ b/src/main_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import os diff --git a/src/opt_in_out.py b/src/opt_in_out.py index 5072193..5e55366 100644 --- a/src/opt_in_out.py +++ b/src/opt_in_out.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import argparse diff --git a/src/utils/__init__.py b/src/utils/__init__.py index cddd115..923d56d 100644 --- a/src/utils/__init__.py +++ b/src/utils/__init__.py @@ -1,2 +1,2 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/utils/cid.py b/src/utils/cid.py index 42df580..fa4868a 100644 --- a/src/utils/cid.py +++ b/src/utils/cid.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import logging as log diff --git a/src/utils/colored_print.py b/src/utils/colored_print.py index 17ace34..d8b792a 100644 --- a/src/utils/colored_print.py +++ b/src/utils/colored_print.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 from platform import system diff --git a/src/utils/input_with_timeout.py b/src/utils/input_with_timeout.py index 596ffdd..6bf1ee2 100644 --- a/src/utils/input_with_timeout.py +++ b/src/utils/input_with_timeout.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import sys diff --git a/src/utils/input_with_timeout_test.py b/src/utils/input_with_timeout_test.py index dd62362..bda061a 100644 --- a/src/utils/input_with_timeout_test.py +++ b/src/utils/input_with_timeout_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import time diff --git a/src/utils/message.py b/src/utils/message.py index 543e067..a04e7b9 100644 --- a/src/utils/message.py +++ b/src/utils/message.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 from enum import Enum diff --git a/src/utils/opt_in_checker.py b/src/utils/opt_in_checker.py index 060423e..6cd44f9 100644 --- a/src/utils/opt_in_checker.py +++ b/src/utils/opt_in_checker.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import logging as log diff --git a/src/utils/opt_in_checker_test.py b/src/utils/opt_in_checker_test.py index 7fdb82a..a083985 100644 --- a/src/utils/opt_in_checker_test.py +++ b/src/utils/opt_in_checker_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import json diff --git a/src/utils/params.py b/src/utils/params.py index f55747c..ee8d066 100644 --- a/src/utils/params.py +++ b/src/utils/params.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 telemetry_params = { diff --git a/src/utils/sender.py b/src/utils/sender.py index 020329d..66456a9 100644 --- a/src/utils/sender.py +++ b/src/utils/sender.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import logging as log diff --git a/src/utils/sender_test.py b/src/utils/sender_test.py index bf881da..281b961 100644 --- a/src/utils/sender_test.py +++ b/src/utils/sender_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2023 Intel Corporation +# Copyright (C) 2018-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import time