From c34e563e1b1cbdf5021365555d44e1e28399bad4 Mon Sep 17 00:00:00 2001 From: Anastasiia Pnevskaia Date: Thu, 8 Jan 2026 09:39:30 +0100 Subject: [PATCH] Update copyright. --- setup.py | 2 +- src/__init__.py | 2 +- src/backend/__init__.py | 2 +- src/backend/backend.py | 2 +- src/backend/backend_ga.py | 2 +- src/backend/backend_ga4.py | 2 +- src/backend/backend_ga4_test.py | 2 +- src/backend/backend_ga_test.py | 2 +- src/main.py | 2 +- src/main_test.py | 2 +- src/opt_in_out.py | 2 +- src/utils/__init__.py | 2 +- src/utils/cid.py | 2 +- src/utils/colored_print.py | 2 +- src/utils/input_with_timeout.py | 2 +- src/utils/input_with_timeout_test.py | 2 +- src/utils/message.py | 2 +- src/utils/opt_in_checker.py | 2 +- src/utils/opt_in_checker_test.py | 2 +- src/utils/params.py | 2 +- src/utils/sender.py | 2 +- src/utils/sender_test.py | 2 +- src/utils/stats_processor.py | 2 +- src/utils/stats_processor_test.py | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/setup.py b/setup.py index eafb059..6d3b4f0 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 """ diff --git a/src/__init__.py b/src/__init__.py index 11ea205..2da76ec 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/backend/__init__.py b/src/backend/__init__.py index fbfbe0c..232ced7 100644 --- a/src/backend/__init__.py +++ b/src/backend/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 66c6d64..00270c0 100644 --- a/src/backend/backend.py +++ b/src/backend/backend.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 5047f73..8f419b6 100644 --- a/src/backend/backend_ga.py +++ b/src/backend/backend_ga.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 eb6c49a..d40d660 100644 --- a/src/backend/backend_ga4.py +++ b/src/backend/backend_ga4.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 4c4a8e8..31ffb57 100644 --- a/src/backend/backend_ga4_test.py +++ b/src/backend/backend_ga4_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 c86c716..b86e4d1 100644 --- a/src/backend/backend_ga_test.py +++ b/src/backend/backend_ga_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/main.py b/src/main.py index d34c9a7..19ab495 100644 --- a/src/main.py +++ b/src/main.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 e3d50a9..feaedf4 100644 --- a/src/main_test.py +++ b/src/main_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 98db626..bed5b5c 100644 --- a/src/opt_in_out.py +++ b/src/opt_in_out.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import argparse diff --git a/src/utils/__init__.py b/src/utils/__init__.py index f40cb4f..9d97a25 100644 --- a/src/utils/__init__.py +++ b/src/utils/__init__.py @@ -1,2 +1,2 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 diff --git a/src/utils/cid.py b/src/utils/cid.py index bcecc6a..e199809 100644 --- a/src/utils/cid.py +++ b/src/utils/cid.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 566b014..1158904 100644 --- a/src/utils/colored_print.py +++ b/src/utils/colored_print.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 18a420b..c5a661a 100644 --- a/src/utils/input_with_timeout.py +++ b/src/utils/input_with_timeout.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 4cd308d..ed33441 100644 --- a/src/utils/input_with_timeout_test.py +++ b/src/utils/input_with_timeout_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import time diff --git a/src/utils/message.py b/src/utils/message.py index 6858440..1ee078d 100644 --- a/src/utils/message.py +++ b/src/utils/message.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 974c7cc..d407526 100644 --- a/src/utils/opt_in_checker.py +++ b/src/utils/opt_in_checker.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 46c63a2..b122f87 100644 --- a/src/utils/opt_in_checker_test.py +++ b/src/utils/opt_in_checker_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import json diff --git a/src/utils/params.py b/src/utils/params.py index f885e79..e84a078 100644 --- a/src/utils/params.py +++ b/src/utils/params.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 telemetry_params = { diff --git a/src/utils/sender.py b/src/utils/sender.py index 5d91be1..20777bb 100644 --- a/src/utils/sender.py +++ b/src/utils/sender.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 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 0bc173f..7a3147d 100644 --- a/src/utils/sender_test.py +++ b/src/utils/sender_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import time diff --git a/src/utils/stats_processor.py b/src/utils/stats_processor.py index 89af156..92c35d4 100644 --- a/src/utils/stats_processor.py +++ b/src/utils/stats_processor.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 from .opt_in_checker import OptInChecker diff --git a/src/utils/stats_processor_test.py b/src/utils/stats_processor_test.py index 5b8aaf3..f32fd21 100644 --- a/src/utils/stats_processor_test.py +++ b/src/utils/stats_processor_test.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2025 Intel Corporation +# Copyright (C) 2018-2026 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import os