From 5826a0d6310f46efb4192ba8979b6ec3c53d4064 Mon Sep 17 00:00:00 2001 From: Antti Soininen Date: Wed, 24 Jan 2024 15:12:38 +0100 Subject: [PATCH] Revert "Update copyright notices" This reverts commit 42b23808a25c91aa281a6fbfa3accc6e606af5e6. --- bin/update_copyrights.py | 6 +++--- spine_engine/__init__.py | 1 - spine_engine/config.py | 1 - spine_engine/exception.py | 1 - spine_engine/execution_managers/__init__.py | 1 - spine_engine/execution_managers/execution_manager_base.py | 1 - spine_engine/execution_managers/kernel_execution_manager.py | 1 - .../execution_managers/persistent_execution_manager.py | 1 - .../execution_managers/process_execution_manager.py | 1 - spine_engine/execution_managers/spine_repl.py | 1 - spine_engine/load_project_items.py | 1 - spine_engine/multithread_executor/__init__.py | 1 - spine_engine/multithread_executor/executor.py | 1 - spine_engine/multithread_executor/multithread.py | 1 - spine_engine/multithread_executor/thread_executor.py | 1 - spine_engine/project_item/__init__.py | 1 - spine_engine/project_item/connection.py | 1 - spine_engine/project_item/executable_item_base.py | 1 - spine_engine/project_item/project_item_info.py | 1 - spine_engine/project_item/project_item_resource.py | 1 - spine_engine/project_item/project_item_specification.py | 1 - .../project_item/project_item_specification_factory.py | 1 - spine_engine/project_item_loader.py | 1 - spine_engine/server/__init__.py | 1 - spine_engine/server/certificate_creator.py | 1 - spine_engine/server/engine_server.py | 1 - spine_engine/server/persistent_execution_service.py | 1 - spine_engine/server/ping_service.py | 1 - spine_engine/server/project_extractor_service.py | 1 - spine_engine/server/project_remover_service.py | 1 - spine_engine/server/project_retriever_service.py | 1 - spine_engine/server/remote_execution_service.py | 1 - spine_engine/server/request.py | 1 - spine_engine/server/service_base.py | 1 - spine_engine/server/start_server.py | 1 - spine_engine/server/util/__init__.py | 1 - spine_engine/server/util/event_data_converter.py | 1 - spine_engine/server/util/server_message.py | 1 - spine_engine/server/util/zip_handler.py | 1 - spine_engine/shared_memory_io_manager.py | 1 - spine_engine/spine_engine.py | 1 - spine_engine/utils/__init__.py | 1 - spine_engine/utils/command_line_arguments.py | 1 - spine_engine/utils/execution_resources.py | 1 - spine_engine/utils/helpers.py | 1 - spine_engine/utils/queue_logger.py | 1 - spine_engine/utils/returning_process.py | 1 - spine_engine/utils/serialization.py | 1 - tests/__init__.py | 1 - tests/execution_managers/__init__.py | 1 - tests/execution_managers/test_kernel_execution_manager.py | 1 - .../execution_managers/test_persistent_execution_manager.py | 1 - tests/execution_managers/test_process_execution_manager.py | 1 - tests/project_item/__init__.py | 1 - tests/project_item/test_ExecutableItem.py | 1 - tests/project_item/test_connection.py | 1 - tests/project_item/test_project_item_resource.py | 1 - tests/server/__init__.py | 1 - tests/server/test_EngineServer.py | 1 - tests/server/test_PingService.py | 1 - tests/server/test_ProjectExtractorService.py | 1 - tests/server/test_ProjectRemoverService.py | 1 - tests/server/test_start_server.py | 1 - tests/server/util/__init__.py | 1 - tests/server/util/test_EventDataConverter.py | 1 - tests/server/util/test_ServerMessage.py | 1 - tests/server/util/test_ZipHandler.py | 1 - tests/test_load_project_items.py | 1 - tests/test_spine_engine.py | 1 - tests/utils/__init__.py | 1 - tests/utils/test_command_line_args.py | 1 - tests/utils/test_helpers.py | 1 - tests/utils/test_serialization.py | 1 - 73 files changed, 3 insertions(+), 75 deletions(-) diff --git a/bin/update_copyrights.py b/bin/update_copyrights.py index 260b59cc..256a5840 100644 --- a/bin/update_copyrights.py +++ b/bin/update_copyrights.py @@ -9,7 +9,7 @@ project_source_dir = Path(root_dir, "spine_engine") test_source_dir = Path(root_dir, "tests") -expected = f"# Copyright (C) 2023-{current_year} Mopo project consortium" +expected = f"# Copyright (C) 2017-{current_year} Spine project consortium" def update_copyrights(path, suffix, recursive=True): @@ -18,8 +18,8 @@ def update_copyrights(path, suffix, recursive=True): i = 0 with open(path) as python_file: lines = python_file.readlines() - for i, line in enumerate(lines[1:5]): - if line.startswith("# Copyright (C) ") and "Mopo" in line: + for i, line in enumerate(lines[1:4]): + if line.startswith("# Copyright (C) "): lines[i + 1] = lines[i + 1][:21] + str(current_year) + lines[i + 1][25:] break if len(lines) <= i + 1 or not lines[i + 1].startswith(expected): diff --git a/spine_engine/__init__.py b/spine_engine/__init__.py index d69d7fb2..ea086c0a 100644 --- a/spine_engine/__init__.py +++ b/spine_engine/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser # General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your diff --git a/spine_engine/config.py b/spine_engine/config.py index 7a372e19..885c4a14 100644 --- a/spine_engine/config.py +++ b/spine_engine/config.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/exception.py b/spine_engine/exception.py index 2818d6a1..46f26393 100644 --- a/spine_engine/exception.py +++ b/spine_engine/exception.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/execution_managers/__init__.py b/spine_engine/execution_managers/__init__.py index 9b9bfaa8..7c0a5fab 100644 --- a/spine_engine/execution_managers/__init__.py +++ b/spine_engine/execution_managers/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser # General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your diff --git a/spine_engine/execution_managers/execution_manager_base.py b/spine_engine/execution_managers/execution_manager_base.py index a5748925..b919b4b0 100644 --- a/spine_engine/execution_managers/execution_manager_base.py +++ b/spine_engine/execution_managers/execution_manager_base.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/execution_managers/kernel_execution_manager.py b/spine_engine/execution_managers/kernel_execution_manager.py index 100415a6..d21ea9a5 100644 --- a/spine_engine/execution_managers/kernel_execution_manager.py +++ b/spine_engine/execution_managers/kernel_execution_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/execution_managers/persistent_execution_manager.py b/spine_engine/execution_managers/persistent_execution_manager.py index e60f5db0..095d670a 100644 --- a/spine_engine/execution_managers/persistent_execution_manager.py +++ b/spine_engine/execution_managers/persistent_execution_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/execution_managers/process_execution_manager.py b/spine_engine/execution_managers/process_execution_manager.py index 3f7a26e7..dd2cc8e8 100644 --- a/spine_engine/execution_managers/process_execution_manager.py +++ b/spine_engine/execution_managers/process_execution_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/execution_managers/spine_repl.py b/spine_engine/execution_managers/spine_repl.py index b6087345..6d21cf35 100644 --- a/spine_engine/execution_managers/spine_repl.py +++ b/spine_engine/execution_managers/spine_repl.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/load_project_items.py b/spine_engine/load_project_items.py index 9d85d140..47b1a05e 100644 --- a/spine_engine/load_project_items.py +++ b/spine_engine/load_project_items.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/multithread_executor/__init__.py b/spine_engine/multithread_executor/__init__.py index 9b9bfaa8..7c0a5fab 100644 --- a/spine_engine/multithread_executor/__init__.py +++ b/spine_engine/multithread_executor/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser # General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your diff --git a/spine_engine/multithread_executor/executor.py b/spine_engine/multithread_executor/executor.py index 0759ed11..cafc8f74 100644 --- a/spine_engine/multithread_executor/executor.py +++ b/spine_engine/multithread_executor/executor.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/multithread_executor/multithread.py b/spine_engine/multithread_executor/multithread.py index c8c11a80..2acee7a4 100644 --- a/spine_engine/multithread_executor/multithread.py +++ b/spine_engine/multithread_executor/multithread.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/multithread_executor/thread_executor.py b/spine_engine/multithread_executor/thread_executor.py index 094b18c5..8d614cf6 100644 --- a/spine_engine/multithread_executor/thread_executor.py +++ b/spine_engine/multithread_executor/thread_executor.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/__init__.py b/spine_engine/project_item/__init__.py index 8c9c608c..d45f1532 100644 --- a/spine_engine/project_item/__init__.py +++ b/spine_engine/project_item/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/connection.py b/spine_engine/project_item/connection.py index 179f0fa1..9f7bebf4 100644 --- a/spine_engine/project_item/connection.py +++ b/spine_engine/project_item/connection.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/executable_item_base.py b/spine_engine/project_item/executable_item_base.py index 5a696f89..18952624 100644 --- a/spine_engine/project_item/executable_item_base.py +++ b/spine_engine/project_item/executable_item_base.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/project_item_info.py b/spine_engine/project_item/project_item_info.py index 7ccee35c..e6571176 100644 --- a/spine_engine/project_item/project_item_info.py +++ b/spine_engine/project_item/project_item_info.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/project_item_resource.py b/spine_engine/project_item/project_item_resource.py index ce31901d..1ec0b059 100644 --- a/spine_engine/project_item/project_item_resource.py +++ b/spine_engine/project_item/project_item_resource.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/project_item_specification.py b/spine_engine/project_item/project_item_specification.py index 66fa7159..5a570a04 100644 --- a/spine_engine/project_item/project_item_specification.py +++ b/spine_engine/project_item/project_item_specification.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item/project_item_specification_factory.py b/spine_engine/project_item/project_item_specification_factory.py index f6da6c1d..74a0acbd 100644 --- a/spine_engine/project_item/project_item_specification_factory.py +++ b/spine_engine/project_item/project_item_specification_factory.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/project_item_loader.py b/spine_engine/project_item_loader.py index 663703a5..37533e11 100644 --- a/spine_engine/project_item_loader.py +++ b/spine_engine/project_item_loader.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/__init__.py b/spine_engine/server/__init__.py index bc32f216..21f4a05d 100644 --- a/spine_engine/server/__init__.py +++ b/spine_engine/server/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser # General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your diff --git a/spine_engine/server/certificate_creator.py b/spine_engine/server/certificate_creator.py index cc0c7aa1..02aa8981 100644 --- a/spine_engine/server/certificate_creator.py +++ b/spine_engine/server/certificate_creator.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/engine_server.py b/spine_engine/server/engine_server.py index 5aba26f9..ecfd6e74 100644 --- a/spine_engine/server/engine_server.py +++ b/spine_engine/server/engine_server.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/persistent_execution_service.py b/spine_engine/server/persistent_execution_service.py index b974ea48..9e9236ed 100644 --- a/spine_engine/server/persistent_execution_service.py +++ b/spine_engine/server/persistent_execution_service.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/ping_service.py b/spine_engine/server/ping_service.py index 4dfed179..dc338e75 100644 --- a/spine_engine/server/ping_service.py +++ b/spine_engine/server/ping_service.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/project_extractor_service.py b/spine_engine/server/project_extractor_service.py index b43e49a9..a28dc8b3 100644 --- a/spine_engine/server/project_extractor_service.py +++ b/spine_engine/server/project_extractor_service.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/project_remover_service.py b/spine_engine/server/project_remover_service.py index 0b91abb9..5a7c1272 100644 --- a/spine_engine/server/project_remover_service.py +++ b/spine_engine/server/project_remover_service.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/project_retriever_service.py b/spine_engine/server/project_retriever_service.py index 1e01db2f..c68e30dc 100644 --- a/spine_engine/server/project_retriever_service.py +++ b/spine_engine/server/project_retriever_service.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/remote_execution_service.py b/spine_engine/server/remote_execution_service.py index 181527d0..792b6527 100644 --- a/spine_engine/server/remote_execution_service.py +++ b/spine_engine/server/remote_execution_service.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/request.py b/spine_engine/server/request.py index 190c4a39..a7071f90 100644 --- a/spine_engine/server/request.py +++ b/spine_engine/server/request.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/service_base.py b/spine_engine/server/service_base.py index b9cd245e..c93bdd53 100644 --- a/spine_engine/server/service_base.py +++ b/spine_engine/server/service_base.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/start_server.py b/spine_engine/server/start_server.py index cf932101..8c07cc89 100644 --- a/spine_engine/server/start_server.py +++ b/spine_engine/server/start_server.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/util/__init__.py b/spine_engine/server/util/__init__.py index 41e374db..4c4b33d5 100644 --- a/spine_engine/server/util/__init__.py +++ b/spine_engine/server/util/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser # General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your diff --git a/spine_engine/server/util/event_data_converter.py b/spine_engine/server/util/event_data_converter.py index fd321663..419f26fa 100644 --- a/spine_engine/server/util/event_data_converter.py +++ b/spine_engine/server/util/event_data_converter.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/util/server_message.py b/spine_engine/server/util/server_message.py index 1f8a032e..f4ed2550 100644 --- a/spine_engine/server/util/server_message.py +++ b/spine_engine/server/util/server_message.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/server/util/zip_handler.py b/spine_engine/server/util/zip_handler.py index 627c4cab..67a217bd 100644 --- a/spine_engine/server/util/zip_handler.py +++ b/spine_engine/server/util/zip_handler.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/shared_memory_io_manager.py b/spine_engine/shared_memory_io_manager.py index e50149f0..d8df5208 100644 --- a/spine_engine/shared_memory_io_manager.py +++ b/spine_engine/shared_memory_io_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/spine_engine.py b/spine_engine/spine_engine.py index d6af2b49..87468451 100644 --- a/spine_engine/spine_engine.py +++ b/spine_engine/spine_engine.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/__init__.py b/spine_engine/utils/__init__.py index b60a5f73..dd919c8a 100644 --- a/spine_engine/utils/__init__.py +++ b/spine_engine/utils/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/command_line_arguments.py b/spine_engine/utils/command_line_arguments.py index 93d3009b..ae7ecfc2 100644 --- a/spine_engine/utils/command_line_arguments.py +++ b/spine_engine/utils/command_line_arguments.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/execution_resources.py b/spine_engine/utils/execution_resources.py index 10f22a8e..1b0b1ac0 100644 --- a/spine_engine/utils/execution_resources.py +++ b/spine_engine/utils/execution_resources.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/helpers.py b/spine_engine/utils/helpers.py index 6b4bca32..a3d973d0 100644 --- a/spine_engine/utils/helpers.py +++ b/spine_engine/utils/helpers.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/queue_logger.py b/spine_engine/utils/queue_logger.py index c2675bc9..63c612e5 100644 --- a/spine_engine/utils/queue_logger.py +++ b/spine_engine/utils/queue_logger.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/returning_process.py b/spine_engine/utils/returning_process.py index b0386b44..167f72aa 100644 --- a/spine_engine/utils/returning_process.py +++ b/spine_engine/utils/returning_process.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/spine_engine/utils/serialization.py b/spine_engine/utils/serialization.py index cd8b5c1c..c2f84498 100644 --- a/spine_engine/utils/serialization.py +++ b/spine_engine/utils/serialization.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/__init__.py b/tests/__init__.py index 28a47612..30cf09be 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/execution_managers/__init__.py b/tests/execution_managers/__init__.py index ae9fa713..ede19267 100644 --- a/tests/execution_managers/__init__.py +++ b/tests/execution_managers/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/execution_managers/test_kernel_execution_manager.py b/tests/execution_managers/test_kernel_execution_manager.py index a40da05a..5f5bab83 100644 --- a/tests/execution_managers/test_kernel_execution_manager.py +++ b/tests/execution_managers/test_kernel_execution_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/execution_managers/test_persistent_execution_manager.py b/tests/execution_managers/test_persistent_execution_manager.py index fc202162..40ef0358 100644 --- a/tests/execution_managers/test_persistent_execution_manager.py +++ b/tests/execution_managers/test_persistent_execution_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/execution_managers/test_process_execution_manager.py b/tests/execution_managers/test_process_execution_manager.py index ac102c17..6239b957 100644 --- a/tests/execution_managers/test_process_execution_manager.py +++ b/tests/execution_managers/test_process_execution_manager.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/project_item/__init__.py b/tests/project_item/__init__.py index 9758af0a..e7bcefef 100644 --- a/tests/project_item/__init__.py +++ b/tests/project_item/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/project_item/test_ExecutableItem.py b/tests/project_item/test_ExecutableItem.py index 0ed9c746..035fb8a4 100644 --- a/tests/project_item/test_ExecutableItem.py +++ b/tests/project_item/test_ExecutableItem.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Toolbox. # Spine Toolbox is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/project_item/test_connection.py b/tests/project_item/test_connection.py index 4142ad11..e19835c5 100644 --- a/tests/project_item/test_connection.py +++ b/tests/project_item/test_connection.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/project_item/test_project_item_resource.py b/tests/project_item/test_project_item_resource.py index dbd2ca83..db87e1bd 100644 --- a/tests/project_item/test_project_item_resource.py +++ b/tests/project_item/test_project_item_resource.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/__init__.py b/tests/server/__init__.py index d8e28010..99f0e29d 100644 --- a/tests/server/__init__.py +++ b/tests/server/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/test_EngineServer.py b/tests/server/test_EngineServer.py index 5e722681..3ff2fcb0 100644 --- a/tests/server/test_EngineServer.py +++ b/tests/server/test_EngineServer.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/test_PingService.py b/tests/server/test_PingService.py index 190a27ee..631b3a1c 100644 --- a/tests/server/test_PingService.py +++ b/tests/server/test_PingService.py @@ -1,6 +1,5 @@ ##################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/test_ProjectExtractorService.py b/tests/server/test_ProjectExtractorService.py index 6020d82f..c2f7d976 100644 --- a/tests/server/test_ProjectExtractorService.py +++ b/tests/server/test_ProjectExtractorService.py @@ -1,6 +1,5 @@ ##################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/test_ProjectRemoverService.py b/tests/server/test_ProjectRemoverService.py index 33ba7bc2..a9848baa 100644 --- a/tests/server/test_ProjectRemoverService.py +++ b/tests/server/test_ProjectRemoverService.py @@ -1,6 +1,5 @@ ##################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/test_start_server.py b/tests/server/test_start_server.py index ff10bccf..5e234cec 100644 --- a/tests/server/test_start_server.py +++ b/tests/server/test_start_server.py @@ -1,6 +1,5 @@ ##################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/util/__init__.py b/tests/server/util/__init__.py index b60a5f73..dd919c8a 100644 --- a/tests/server/util/__init__.py +++ b/tests/server/util/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/util/test_EventDataConverter.py b/tests/server/util/test_EventDataConverter.py index 674a0f1d..7bd278ec 100644 --- a/tests/server/util/test_EventDataConverter.py +++ b/tests/server/util/test_EventDataConverter.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/util/test_ServerMessage.py b/tests/server/util/test_ServerMessage.py index e1297dfd..13466cc7 100644 --- a/tests/server/util/test_ServerMessage.py +++ b/tests/server/util/test_ServerMessage.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/server/util/test_ZipHandler.py b/tests/server/util/test_ZipHandler.py index 27364f3b..7e4e43b3 100644 --- a/tests/server/util/test_ZipHandler.py +++ b/tests/server/util/test_ZipHandler.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/test_load_project_items.py b/tests/test_load_project_items.py index 1a463e16..b182fe11 100644 --- a/tests/test_load_project_items.py +++ b/tests/test_load_project_items.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/test_spine_engine.py b/tests/test_spine_engine.py index b104b2c0..686b5840 100644 --- a/tests/test_spine_engine.py +++ b/tests/test_spine_engine.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/utils/__init__.py b/tests/utils/__init__.py index e44fa18b..ec0ec13b 100644 --- a/tests/utils/__init__.py +++ b/tests/utils/__init__.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/utils/test_command_line_args.py b/tests/utils/test_command_line_args.py index 55edac48..8f640e78 100644 --- a/tests/utils/test_command_line_args.py +++ b/tests/utils/test_command_line_args.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/utils/test_helpers.py b/tests/utils/test_helpers.py index 81f6f229..627c1132 100644 --- a/tests/utils/test_helpers.py +++ b/tests/utils/test_helpers.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) diff --git a/tests/utils/test_serialization.py b/tests/utils/test_serialization.py index 8613ea2e..d9948ca2 100644 --- a/tests/utils/test_serialization.py +++ b/tests/utils/test_serialization.py @@ -1,6 +1,5 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium -# Copyright (C) 2023-2024 Mopo project consortium # This file is part of Spine Engine. # Spine Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)