From 0bb592ba30a5cdf4ea9873d7215432fa8d5e9a7e Mon Sep 17 00:00:00 2001 From: Antti Soininen Date: Tue, 30 Jan 2024 14:09:30 +0200 Subject: [PATCH] Update copyrights Re spine-tools/Spine-Toolbox#2514 --- bin/update_copyrights.py | 36 ------------------- spinedb_api/__init__.py | 1 + spinedb_api/compatibility.py | 1 + spinedb_api/conflict_resolution.py | 1 + spinedb_api/db_mapping.py | 1 + spinedb_api/db_mapping_base.py | 2 ++ spinedb_api/db_mapping_commit_mixin.py | 1 + spinedb_api/db_mapping_query_mixin.py | 1 + spinedb_api/exception.py | 1 + spinedb_api/export_functions.py | 1 + spinedb_api/export_mapping/__init__.py | 1 + spinedb_api/export_mapping/export_mapping.py | 1 + spinedb_api/export_mapping/generator.py | 1 + spinedb_api/export_mapping/group_functions.py | 1 + spinedb_api/export_mapping/pivot.py | 1 + spinedb_api/export_mapping/settings.py | 1 + spinedb_api/filters/__init__.py | 1 + spinedb_api/filters/alternative_filter.py | 1 + spinedb_api/filters/execution_filter.py | 1 + spinedb_api/filters/renamer.py | 1 + spinedb_api/filters/scenario_filter.py | 1 + spinedb_api/filters/tools.py | 1 + spinedb_api/filters/value_transformer.py | 1 + spinedb_api/graph_layout_generator.py | 1 + spinedb_api/helpers.py | 1 + spinedb_api/import_functions.py | 1 + spinedb_api/import_mapping/__init__.py | 1 + spinedb_api/import_mapping/generator.py | 1 + spinedb_api/import_mapping/import_mapping.py | 1 + .../import_mapping/import_mapping_compat.py | 1 + spinedb_api/import_mapping/type_conversion.py | 1 + spinedb_api/item_id.py | 1 + spinedb_api/item_status.py | 1 + spinedb_api/mapped_items.py | 1 + spinedb_api/mapping.py | 1 + spinedb_api/parameter_value.py | 1 + spinedb_api/perfect_split.py | 1 + spinedb_api/purge.py | 1 + spinedb_api/query.py | 1 + spinedb_api/server_client_helpers.py | 1 + spinedb_api/spine_db_client.py | 1 + spinedb_api/spine_db_server.py | 1 + spinedb_api/spine_io/__init__.py | 1 + spinedb_api/spine_io/exporters/__init__.py | 1 + spinedb_api/spine_io/exporters/csv_writer.py | 1 + spinedb_api/spine_io/exporters/excel.py | 1 + .../spine_io/exporters/excel_writer.py | 1 + spinedb_api/spine_io/exporters/gdx_writer.py | 1 + spinedb_api/spine_io/exporters/sql_writer.py | 1 + spinedb_api/spine_io/exporters/writer.py | 1 + spinedb_api/spine_io/gdx_utils.py | 1 + spinedb_api/spine_io/importers/__init__.py | 1 + spinedb_api/spine_io/importers/csv_reader.py | 1 + .../spine_io/importers/datapackage_reader.py | 1 + .../spine_io/importers/excel_reader.py | 1 + .../spine_io/importers/gdx_connector.py | 1 + spinedb_api/spine_io/importers/json_reader.py | 1 + spinedb_api/spine_io/importers/reader.py | 1 + .../importers/sqlalchemy_connector.py | 1 + tests/__init__.py | 1 + tests/custom_db_mapping.py | 1 + tests/export_mapping/__init__.py | 1 + tests/export_mapping/test_export_mapping.py | 1 + tests/export_mapping/test_pivot.py | 1 + tests/export_mapping/test_settings.py | 1 + tests/filters/__init__.py | 1 + tests/filters/test_alternative_filter.py | 1 + tests/filters/test_execution_filter.py | 1 + tests/filters/test_renamer.py | 1 + tests/filters/test_scenario_filter.py | 1 + tests/filters/test_tool_filter.py | 1 + tests/filters/test_tools.py | 1 + tests/filters/test_value_transformer.py | 1 + tests/import_mapping/__init__.py | 1 + tests/import_mapping/test_generator.py | 1 + tests/import_mapping/test_import_mapping.py | 1 + tests/import_mapping/test_type_conversion.py | 1 + tests/spine_io/__init__.py | 1 + tests/spine_io/exporters/__init__.py | 1 + tests/spine_io/exporters/test_csv_writer.py | 1 + tests/spine_io/exporters/test_excel_writer.py | 1 + tests/spine_io/exporters/test_gdx_writer.py | 1 + tests/spine_io/exporters/test_sql_writer.py | 1 + tests/spine_io/exporters/test_writer.py | 1 + tests/spine_io/importers/__init__.py | 1 + tests/spine_io/importers/test_CSVConnector.py | 1 + tests/spine_io/importers/test_GdxConnector.py | 1 + .../importers/test_datapackage_reader.py | 1 + tests/spine_io/importers/test_excel_reader.py | 1 + tests/spine_io/importers/test_json_reader.py | 1 + tests/spine_io/importers/test_reader.py | 1 + .../importers/test_sqlalchemy_connector.py | 1 + tests/spine_io/test_excel_integration.py | 1 + tests/test_DatabaseMapping.py | 1 + tests/test_check_integrity.py | 1 + tests/test_export_functions.py | 1 + tests/test_helpers.py | 1 + tests/test_import_functions.py | 1 + tests/test_item_id.py | 1 + tests/test_mapping.py | 1 + tests/test_migration.py | 1 + tests/test_parameter_value.py | 1 + tests/test_purge.py | 1 + 103 files changed, 103 insertions(+), 36 deletions(-) delete mode 100644 bin/update_copyrights.py diff --git a/bin/update_copyrights.py b/bin/update_copyrights.py deleted file mode 100644 index 6194729c..00000000 --- a/bin/update_copyrights.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python - -from pathlib import Path -import time - - -current_year = time.gmtime().tm_year -root_dir = Path(__file__).parent.parent -project_source_dir = Path(root_dir, "spinedb_api") -test_source_dir = Path(root_dir, "tests") - -expected = f"# Copyright (C) 2017-{current_year} Spine project consortium" - - -def update_copyrights(path, suffix, recursive=True): - for path in path.iterdir(): - if path.suffix == suffix: - i = 0 - with open(path) as python_file: - lines = python_file.readlines() - 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): - print(f"Confusing or no copyright: {path}") - else: - with open(path, "w") as python_file: - python_file.writelines(lines) - elif recursive and path.is_dir(): - update_copyrights(path, suffix) - - -update_copyrights(root_dir, ".py", recursive=False) -update_copyrights(project_source_dir, ".py") -update_copyrights(test_source_dir, ".py") diff --git a/spinedb_api/__init__.py b/spinedb_api/__init__.py index b6b41a6b..c947b13c 100644 --- a/spinedb_api/__init__.py +++ b/spinedb_api/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/compatibility.py b/spinedb_api/compatibility.py index 92a6783b..04b02804 100644 --- a/spinedb_api/compatibility.py +++ b/spinedb_api/compatibility.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/conflict_resolution.py b/spinedb_api/conflict_resolution.py index 9e459b99..aa73f4c9 100644 --- a/spinedb_api/conflict_resolution.py +++ b/spinedb_api/conflict_resolution.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/db_mapping.py b/spinedb_api/db_mapping.py index 8992ee8e..ab7b8aad 100644 --- a/spinedb_api/db_mapping.py +++ b/spinedb_api/db_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/db_mapping_base.py b/spinedb_api/db_mapping_base.py index c3253258..30662108 100644 --- a/spinedb_api/db_mapping_base.py +++ b/spinedb_api/db_mapping_base.py @@ -1,5 +1,7 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/db_mapping_commit_mixin.py b/spinedb_api/db_mapping_commit_mixin.py index 14f80d4e..ae5985e6 100644 --- a/spinedb_api/db_mapping_commit_mixin.py +++ b/spinedb_api/db_mapping_commit_mixin.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/db_mapping_query_mixin.py b/spinedb_api/db_mapping_query_mixin.py index c5fd4f37..30831290 100644 --- a/spinedb_api/db_mapping_query_mixin.py +++ b/spinedb_api/db_mapping_query_mixin.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/exception.py b/spinedb_api/exception.py index c2554dab..4a6ad078 100644 --- a/spinedb_api/exception.py +++ b/spinedb_api/exception.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/export_functions.py b/spinedb_api/export_functions.py index 1040a427..2da0b132 100644 --- a/spinedb_api/export_functions.py +++ b/spinedb_api/export_functions.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # 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/spinedb_api/export_mapping/__init__.py b/spinedb_api/export_mapping/__init__.py index c75b202c..08655b98 100644 --- a/spinedb_api/export_mapping/__init__.py +++ b/spinedb_api/export_mapping/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/export_mapping/export_mapping.py b/spinedb_api/export_mapping/export_mapping.py index e5ccef3e..69ba2fa4 100644 --- a/spinedb_api/export_mapping/export_mapping.py +++ b/spinedb_api/export_mapping/export_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/export_mapping/generator.py b/spinedb_api/export_mapping/generator.py index 026454be..1cc551c7 100644 --- a/spinedb_api/export_mapping/generator.py +++ b/spinedb_api/export_mapping/generator.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/export_mapping/group_functions.py b/spinedb_api/export_mapping/group_functions.py index ce4598fb..edfb7e76 100644 --- a/spinedb_api/export_mapping/group_functions.py +++ b/spinedb_api/export_mapping/group_functions.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/export_mapping/pivot.py b/spinedb_api/export_mapping/pivot.py index afd78344..fd1bfcf3 100644 --- a/spinedb_api/export_mapping/pivot.py +++ b/spinedb_api/export_mapping/pivot.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/export_mapping/settings.py b/spinedb_api/export_mapping/settings.py index ed10ff58..7fb932fe 100644 --- a/spinedb_api/export_mapping/settings.py +++ b/spinedb_api/export_mapping/settings.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/__init__.py b/spinedb_api/filters/__init__.py index 46105c99..5f01a618 100644 --- a/spinedb_api/filters/__init__.py +++ b/spinedb_api/filters/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/alternative_filter.py b/spinedb_api/filters/alternative_filter.py index f406f793..b76ded9f 100644 --- a/spinedb_api/filters/alternative_filter.py +++ b/spinedb_api/filters/alternative_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/execution_filter.py b/spinedb_api/filters/execution_filter.py index 51a9f2db..bbaa4932 100644 --- a/spinedb_api/filters/execution_filter.py +++ b/spinedb_api/filters/execution_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/renamer.py b/spinedb_api/filters/renamer.py index a3970ac7..f591d883 100644 --- a/spinedb_api/filters/renamer.py +++ b/spinedb_api/filters/renamer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/scenario_filter.py b/spinedb_api/filters/scenario_filter.py index 3bbcb5e7..80d264fa 100644 --- a/spinedb_api/filters/scenario_filter.py +++ b/spinedb_api/filters/scenario_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/tools.py b/spinedb_api/filters/tools.py index 94d60545..0787d515 100644 --- a/spinedb_api/filters/tools.py +++ b/spinedb_api/filters/tools.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/filters/value_transformer.py b/spinedb_api/filters/value_transformer.py index 956de19d..6e444726 100644 --- a/spinedb_api/filters/value_transformer.py +++ b/spinedb_api/filters/value_transformer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/graph_layout_generator.py b/spinedb_api/graph_layout_generator.py index be0a149a..0d200ee6 100644 --- a/spinedb_api/graph_layout_generator.py +++ b/spinedb_api/graph_layout_generator.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # 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/spinedb_api/helpers.py b/spinedb_api/helpers.py index aaba62be..9f26606f 100644 --- a/spinedb_api/helpers.py +++ b/spinedb_api/helpers.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/import_functions.py b/spinedb_api/import_functions.py index c270c3e4..62cb63a0 100644 --- a/spinedb_api/import_functions.py +++ b/spinedb_api/import_functions.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # 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/spinedb_api/import_mapping/__init__.py b/spinedb_api/import_mapping/__init__.py index 9966601e..08d399e5 100644 --- a/spinedb_api/import_mapping/__init__.py +++ b/spinedb_api/import_mapping/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/import_mapping/generator.py b/spinedb_api/import_mapping/generator.py index b73037a4..43d7ee03 100644 --- a/spinedb_api/import_mapping/generator.py +++ b/spinedb_api/import_mapping/generator.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/import_mapping/import_mapping.py b/spinedb_api/import_mapping/import_mapping.py index c07d4f3c..625809c5 100644 --- a/spinedb_api/import_mapping/import_mapping.py +++ b/spinedb_api/import_mapping/import_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/import_mapping/import_mapping_compat.py b/spinedb_api/import_mapping/import_mapping_compat.py index c8170b51..4434334d 100644 --- a/spinedb_api/import_mapping/import_mapping_compat.py +++ b/spinedb_api/import_mapping/import_mapping_compat.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/import_mapping/type_conversion.py b/spinedb_api/import_mapping/type_conversion.py index 4f054c9c..fea46b4b 100644 --- a/spinedb_api/import_mapping/type_conversion.py +++ b/spinedb_api/import_mapping/type_conversion.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/item_id.py b/spinedb_api/item_id.py index 2aec7f84..441736f4 100644 --- a/spinedb_api/item_id.py +++ b/spinedb_api/item_id.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/item_status.py b/spinedb_api/item_status.py index 7fb8e76f..32e4a6a2 100644 --- a/spinedb_api/item_status.py +++ b/spinedb_api/item_status.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/mapped_items.py b/spinedb_api/mapped_items.py index 3f6b8eab..59833e9f 100644 --- a/spinedb_api/mapped_items.py +++ b/spinedb_api/mapped_items.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/mapping.py b/spinedb_api/mapping.py index 5b197b17..8e30318a 100644 --- a/spinedb_api/mapping.py +++ b/spinedb_api/mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/parameter_value.py b/spinedb_api/parameter_value.py index 7dbd704d..b2a5aa76 100644 --- a/spinedb_api/parameter_value.py +++ b/spinedb_api/parameter_value.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/perfect_split.py b/spinedb_api/perfect_split.py index 6028e47a..287a4a87 100644 --- a/spinedb_api/perfect_split.py +++ b/spinedb_api/perfect_split.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # 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/spinedb_api/purge.py b/spinedb_api/purge.py index 472fa5c3..179541c5 100644 --- a/spinedb_api/purge.py +++ b/spinedb_api/purge.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # 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/spinedb_api/query.py b/spinedb_api/query.py index db23f1e7..3cbdbe00 100644 --- a/spinedb_api/query.py +++ b/spinedb_api/query.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/server_client_helpers.py b/spinedb_api/server_client_helpers.py index 318698a9..d8d62ede 100644 --- a/spinedb_api/server_client_helpers.py +++ b/spinedb_api/server_client_helpers.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_db_client.py b/spinedb_api/spine_db_client.py index 570043b4..017af3e8 100644 --- a/spinedb_api/spine_db_client.py +++ b/spinedb_api/spine_db_client.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # 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/spinedb_api/spine_db_server.py b/spinedb_api/spine_db_server.py index 4ac5b7d8..95853922 100644 --- a/spinedb_api/spine_db_server.py +++ b/spinedb_api/spine_db_server.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/__init__.py b/spinedb_api/spine_io/__init__.py index adea0648..861b4d46 100644 --- a/spinedb_api/spine_io/__init__.py +++ b/spinedb_api/spine_io/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/__init__.py b/spinedb_api/spine_io/exporters/__init__.py index 3d6ed59b..bcc84ab1 100644 --- a/spinedb_api/spine_io/exporters/__init__.py +++ b/spinedb_api/spine_io/exporters/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/csv_writer.py b/spinedb_api/spine_io/exporters/csv_writer.py index 4974be65..05dc7616 100644 --- a/spinedb_api/spine_io/exporters/csv_writer.py +++ b/spinedb_api/spine_io/exporters/csv_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/excel.py b/spinedb_api/spine_io/exporters/excel.py index d75ecd95..56798905 100644 --- a/spinedb_api/spine_io/exporters/excel.py +++ b/spinedb_api/spine_io/exporters/excel.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/excel_writer.py b/spinedb_api/spine_io/exporters/excel_writer.py index 2c1996d2..e29c34ca 100644 --- a/spinedb_api/spine_io/exporters/excel_writer.py +++ b/spinedb_api/spine_io/exporters/excel_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/gdx_writer.py b/spinedb_api/spine_io/exporters/gdx_writer.py index faae3d53..209cfa59 100644 --- a/spinedb_api/spine_io/exporters/gdx_writer.py +++ b/spinedb_api/spine_io/exporters/gdx_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/sql_writer.py b/spinedb_api/spine_io/exporters/sql_writer.py index 6065d997..f7c84b78 100644 --- a/spinedb_api/spine_io/exporters/sql_writer.py +++ b/spinedb_api/spine_io/exporters/sql_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/exporters/writer.py b/spinedb_api/spine_io/exporters/writer.py index 26698854..bf661970 100644 --- a/spinedb_api/spine_io/exporters/writer.py +++ b/spinedb_api/spine_io/exporters/writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/gdx_utils.py b/spinedb_api/spine_io/gdx_utils.py index 229c9338..0a033bb6 100644 --- a/spinedb_api/spine_io/gdx_utils.py +++ b/spinedb_api/spine_io/gdx_utils.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/__init__.py b/spinedb_api/spine_io/importers/__init__.py index ab3c7b4b..cb5c60c9 100644 --- a/spinedb_api/spine_io/importers/__init__.py +++ b/spinedb_api/spine_io/importers/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/csv_reader.py b/spinedb_api/spine_io/importers/csv_reader.py index b3381bba..a9bea8c4 100644 --- a/spinedb_api/spine_io/importers/csv_reader.py +++ b/spinedb_api/spine_io/importers/csv_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/datapackage_reader.py b/spinedb_api/spine_io/importers/datapackage_reader.py index 8fa1bc5b..baf05ef9 100644 --- a/spinedb_api/spine_io/importers/datapackage_reader.py +++ b/spinedb_api/spine_io/importers/datapackage_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/excel_reader.py b/spinedb_api/spine_io/importers/excel_reader.py index 22cabe0f..0e143cf3 100644 --- a/spinedb_api/spine_io/importers/excel_reader.py +++ b/spinedb_api/spine_io/importers/excel_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/gdx_connector.py b/spinedb_api/spine_io/importers/gdx_connector.py index 61f28935..f9c85071 100644 --- a/spinedb_api/spine_io/importers/gdx_connector.py +++ b/spinedb_api/spine_io/importers/gdx_connector.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/json_reader.py b/spinedb_api/spine_io/importers/json_reader.py index 024b98d7..70d211ea 100644 --- a/spinedb_api/spine_io/importers/json_reader.py +++ b/spinedb_api/spine_io/importers/json_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/reader.py b/spinedb_api/spine_io/importers/reader.py index 3a645e96..0f3d875c 100644 --- a/spinedb_api/spine_io/importers/reader.py +++ b/spinedb_api/spine_io/importers/reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/spinedb_api/spine_io/importers/sqlalchemy_connector.py b/spinedb_api/spine_io/importers/sqlalchemy_connector.py index e187356d..360e3ec6 100644 --- a/spinedb_api/spine_io/importers/sqlalchemy_connector.py +++ b/spinedb_api/spine_io/importers/sqlalchemy_connector.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/__init__.py b/tests/__init__.py index f9452d16..c183189d 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/custom_db_mapping.py b/tests/custom_db_mapping.py index ab578e3f..991da42e 100644 --- a/tests/custom_db_mapping.py +++ b/tests/custom_db_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/export_mapping/__init__.py b/tests/export_mapping/__init__.py index 46105c99..5f01a618 100644 --- a/tests/export_mapping/__init__.py +++ b/tests/export_mapping/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/export_mapping/test_export_mapping.py b/tests/export_mapping/test_export_mapping.py index 826588ac..00a5609e 100644 --- a/tests/export_mapping/test_export_mapping.py +++ b/tests/export_mapping/test_export_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/export_mapping/test_pivot.py b/tests/export_mapping/test_pivot.py index cfe2e12c..657f6176 100644 --- a/tests/export_mapping/test_pivot.py +++ b/tests/export_mapping/test_pivot.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/export_mapping/test_settings.py b/tests/export_mapping/test_settings.py index fb84d20a..2d4e1044 100644 --- a/tests/export_mapping/test_settings.py +++ b/tests/export_mapping/test_settings.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/__init__.py b/tests/filters/__init__.py index 46105c99..5f01a618 100644 --- a/tests/filters/__init__.py +++ b/tests/filters/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_alternative_filter.py b/tests/filters/test_alternative_filter.py index a677bbe2..11e4b799 100644 --- a/tests/filters/test_alternative_filter.py +++ b/tests/filters/test_alternative_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_execution_filter.py b/tests/filters/test_execution_filter.py index 6a092ee6..c43a894e 100644 --- a/tests/filters/test_execution_filter.py +++ b/tests/filters/test_execution_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_renamer.py b/tests/filters/test_renamer.py index d3bf469e..3fac2083 100644 --- a/tests/filters/test_renamer.py +++ b/tests/filters/test_renamer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_scenario_filter.py b/tests/filters/test_scenario_filter.py index de1be424..f804d515 100644 --- a/tests/filters/test_scenario_filter.py +++ b/tests/filters/test_scenario_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_tool_filter.py b/tests/filters/test_tool_filter.py index a85455da..4e90e46d 100644 --- a/tests/filters/test_tool_filter.py +++ b/tests/filters/test_tool_filter.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_tools.py b/tests/filters/test_tools.py index 41e7f03b..f5e27410 100644 --- a/tests/filters/test_tools.py +++ b/tests/filters/test_tools.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/filters/test_value_transformer.py b/tests/filters/test_value_transformer.py index 3660e85a..f3d39cf8 100644 --- a/tests/filters/test_value_transformer.py +++ b/tests/filters/test_value_transformer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/import_mapping/__init__.py b/tests/import_mapping/__init__.py index 46105c99..5f01a618 100644 --- a/tests/import_mapping/__init__.py +++ b/tests/import_mapping/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/import_mapping/test_generator.py b/tests/import_mapping/test_generator.py index df0a8dac..589210ec 100644 --- a/tests/import_mapping/test_generator.py +++ b/tests/import_mapping/test_generator.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/import_mapping/test_import_mapping.py b/tests/import_mapping/test_import_mapping.py index ff2c5e6c..d8b24df4 100644 --- a/tests/import_mapping/test_import_mapping.py +++ b/tests/import_mapping/test_import_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/import_mapping/test_type_conversion.py b/tests/import_mapping/test_type_conversion.py index c772dabd..803b88f3 100644 --- a/tests/import_mapping/test_type_conversion.py +++ b/tests/import_mapping/test_type_conversion.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/__init__.py b/tests/spine_io/__init__.py index 219c44b8..c4267e43 100644 --- a/tests/spine_io/__init__.py +++ b/tests/spine_io/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/exporters/__init__.py b/tests/spine_io/exporters/__init__.py index a0581eb2..f31adfe2 100644 --- a/tests/spine_io/exporters/__init__.py +++ b/tests/spine_io/exporters/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/exporters/test_csv_writer.py b/tests/spine_io/exporters/test_csv_writer.py index 9ddf6dfc..7df82da9 100644 --- a/tests/spine_io/exporters/test_csv_writer.py +++ b/tests/spine_io/exporters/test_csv_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/exporters/test_excel_writer.py b/tests/spine_io/exporters/test_excel_writer.py index 65f8cf02..3176ef8b 100644 --- a/tests/spine_io/exporters/test_excel_writer.py +++ b/tests/spine_io/exporters/test_excel_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/exporters/test_gdx_writer.py b/tests/spine_io/exporters/test_gdx_writer.py index 48407fd4..5fa97328 100644 --- a/tests/spine_io/exporters/test_gdx_writer.py +++ b/tests/spine_io/exporters/test_gdx_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/exporters/test_sql_writer.py b/tests/spine_io/exporters/test_sql_writer.py index 702adeac..278593a0 100644 --- a/tests/spine_io/exporters/test_sql_writer.py +++ b/tests/spine_io/exporters/test_sql_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/exporters/test_writer.py b/tests/spine_io/exporters/test_writer.py index 9a9283c0..3a150b9b 100644 --- a/tests/spine_io/exporters/test_writer.py +++ b/tests/spine_io/exporters/test_writer.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/__init__.py b/tests/spine_io/importers/__init__.py index bb67bf8a..7d98b02d 100644 --- a/tests/spine_io/importers/__init__.py +++ b/tests/spine_io/importers/__init__.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_CSVConnector.py b/tests/spine_io/importers/test_CSVConnector.py index b8a9d93a..ee746fc8 100644 --- a/tests/spine_io/importers/test_CSVConnector.py +++ b/tests/spine_io/importers/test_CSVConnector.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_GdxConnector.py b/tests/spine_io/importers/test_GdxConnector.py index 7a55c992..39e871da 100644 --- a/tests/spine_io/importers/test_GdxConnector.py +++ b/tests/spine_io/importers/test_GdxConnector.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_datapackage_reader.py b/tests/spine_io/importers/test_datapackage_reader.py index 75906b29..58fabb3f 100644 --- a/tests/spine_io/importers/test_datapackage_reader.py +++ b/tests/spine_io/importers/test_datapackage_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_excel_reader.py b/tests/spine_io/importers/test_excel_reader.py index 8c3f59ed..77fdf4cb 100644 --- a/tests/spine_io/importers/test_excel_reader.py +++ b/tests/spine_io/importers/test_excel_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_json_reader.py b/tests/spine_io/importers/test_json_reader.py index 303bf7ec..58c2754b 100644 --- a/tests/spine_io/importers/test_json_reader.py +++ b/tests/spine_io/importers/test_json_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_reader.py b/tests/spine_io/importers/test_reader.py index 71e90535..4cb9026f 100644 --- a/tests/spine_io/importers/test_reader.py +++ b/tests/spine_io/importers/test_reader.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/importers/test_sqlalchemy_connector.py b/tests/spine_io/importers/test_sqlalchemy_connector.py index 9fab91b1..d4e4ff18 100644 --- a/tests/spine_io/importers/test_sqlalchemy_connector.py +++ b/tests/spine_io/importers/test_sqlalchemy_connector.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/spine_io/test_excel_integration.py b/tests/spine_io/test_excel_integration.py index 7ca1a318..925d0e56 100644 --- a/tests/spine_io/test_excel_integration.py +++ b/tests/spine_io/test_excel_integration.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_DatabaseMapping.py b/tests/test_DatabaseMapping.py index 3069b7c6..f0aa98ac 100644 --- a/tests/test_DatabaseMapping.py +++ b/tests/test_DatabaseMapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_check_integrity.py b/tests/test_check_integrity.py index 9d54caae..afdd4c2d 100644 --- a/tests/test_check_integrity.py +++ b/tests/test_check_integrity.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_export_functions.py b/tests/test_export_functions.py index 3a4e9ccc..2a8aaba9 100644 --- a/tests/test_export_functions.py +++ b/tests/test_export_functions.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # 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/test_helpers.py b/tests/test_helpers.py index 91629536..194f8afd 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_import_functions.py b/tests/test_import_functions.py index 6cfec085..373ba0f9 100644 --- a/tests/test_import_functions.py +++ b/tests/test_import_functions.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_item_id.py b/tests/test_item_id.py index fda8d602..e1965ae3 100644 --- a/tests/test_item_id.py +++ b/tests/test_item_id.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_mapping.py b/tests/test_mapping.py index 94358de2..3e678a5e 100644 --- a/tests/test_mapping.py +++ b/tests/test_mapping.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_migration.py b/tests/test_migration.py index c9cf76d1..27c1a882 100644 --- a/tests/test_migration.py +++ b/tests/test_migration.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_parameter_value.py b/tests/test_parameter_value.py index 8ae63ef5..d54604c7 100644 --- a/tests/test_parameter_value.py +++ b/tests/test_parameter_value.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # Spine Database API 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/tests/test_purge.py b/tests/test_purge.py index f6093e1c..8c08c81a 100644 --- a/tests/test_purge.py +++ b/tests/test_purge.py @@ -1,5 +1,6 @@ ###################################################################################################################### # Copyright (C) 2017-2022 Spine project consortium +# Copyright Spine Database API contributors # This file is part of Spine Database API. # 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)