From 9d83419db4722bdad73ba7a2dcaa4e116573e843 Mon Sep 17 00:00:00 2001 From: s-heppner Date: Mon, 22 Jan 2024 09:58:03 +0100 Subject: [PATCH 1/2] Update NOTICE --- NOTICE | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/NOTICE b/NOTICE index 57be3454e..e806c7d58 100644 --- a/NOTICE +++ b/NOTICE @@ -1,7 +1,7 @@ Eclipse BaSyx Python SDK ======================== -Copyright 2019-2022 the Eclipse BaSyx Authors. +Copyright 2019-2024 the Eclipse BaSyx Authors. The Eclipse BaSyx Python SDK was started as a Python implementation of the Industry 4.0 Asset Administration Shell under the name of PyI40AAS at the Chair of Process Control Engineering, RWTH Aachen University @@ -13,18 +13,3 @@ Declared Project License ------------------------ The artifacts of this project are made available under the terms of the MIT License. Please refer to the LICENSE file for more information. - - -Third-party Work in this Repository ------------------------------------ -This project includes XSD and JSON Schema files, developed at -Plattform Industrie 4.0, Bundesministerium für Wirtschaft und Energie (https://www.plattform-i40.de) - -Published in "Details of the Asset Administration Shell – Part 1" -at https://www.plattform-i40.de/PI40/Redaktion/DE/Downloads/Publikation/Details-of-the-Asset-Administration-Shell-Part1.html - -under the terms of the Creative Commons Attribution-NoDerivs 3.0 Germany License (CC BY-ND 3.0 DE) -https://creativecommons.org/licenses/by-nd/3.0/de/deed.en - -These files are located at `basyx/aas/adapter/json/aasJSONSchema.json` and -`basyx/aas/adapter/xml/{AAS,AAS_ABAC,IEC61360}.xsd`. From 8cd331a6f8a8160fe2a99c737dd7fafc779c01f5 Mon Sep 17 00:00:00 2001 From: s-heppner Date: Mon, 22 Jan 2024 10:01:13 +0100 Subject: [PATCH 2/2] Update copyright notices on all the files --- basyx/aas/adapter/_generic.py | 2 +- basyx/aas/adapter/aasx.py | 2 +- basyx/aas/adapter/json/json_deserialization.py | 2 +- basyx/aas/adapter/json/json_serialization.py | 2 +- basyx/aas/adapter/xml/xml_deserialization.py | 2 +- basyx/aas/adapter/xml/xml_serialization.py | 2 +- basyx/aas/backend/backends.py | 2 +- basyx/aas/backend/couchdb.py | 2 +- basyx/aas/backend/local_file.py | 2 +- basyx/aas/compliance_tool/cli.py | 2 +- basyx/aas/compliance_tool/compliance_check_aasx.py | 2 +- basyx/aas/compliance_tool/compliance_check_json.py | 2 +- basyx/aas/compliance_tool/compliance_check_xml.py | 2 +- basyx/aas/compliance_tool/state_manager.py | 2 +- basyx/aas/examples/data/_helper.py | 2 +- basyx/aas/examples/data/example_aas.py | 2 +- basyx/aas/examples/data/example_aas_mandatory_attributes.py | 2 +- basyx/aas/examples/data/example_aas_missing_attributes.py | 2 +- basyx/aas/examples/data/example_submodel_template.py | 2 +- basyx/aas/model/aas.py | 2 +- basyx/aas/model/base.py | 2 +- basyx/aas/model/concept.py | 2 +- basyx/aas/model/datatypes.py | 2 +- basyx/aas/model/provider.py | 2 +- basyx/aas/model/submodel.py | 2 +- basyx/aas/util/identification.py | 2 +- basyx/aas/util/traversal.py | 2 +- setup.py | 2 +- test/_helper/setup_testdb.py | 2 +- test/adapter/aasx/test_aasx.py | 2 +- test/adapter/json/test_json_deserialization.py | 2 +- test/adapter/json/test_json_serialization.py | 2 +- test/adapter/json/test_json_serialization_deserialization.py | 2 +- test/adapter/xml/test_xml_deserialization.py | 2 +- test/adapter/xml/test_xml_serialization.py | 2 +- test/adapter/xml/test_xml_serialization_deserialization.py | 2 +- test/backend/test_backends.py | 2 +- test/backend/test_couchdb.py | 2 +- test/compliance_tool/test_aas_compliance_tool.py | 2 +- test/compliance_tool/test_compliance_check_aasx.py | 2 +- test/compliance_tool/test_compliance_check_json.py | 2 +- test/compliance_tool/test_compliance_check_xml.py | 2 +- test/compliance_tool/test_state_manager.py | 2 +- test/examples/test_examples.py | 2 +- test/examples/test_helpers.py | 2 +- test/examples/test_tutorials.py | 2 +- test/model/test_base.py | 2 +- test/model/test_datatypes.py | 2 +- test/model/test_provider.py | 2 +- test/model/test_submodel.py | 2 +- test/util/test_identification.py | 2 +- 51 files changed, 51 insertions(+), 51 deletions(-) diff --git a/basyx/aas/adapter/_generic.py b/basyx/aas/adapter/_generic.py index 34c3412b1..425241b4f 100644 --- a/basyx/aas/adapter/_generic.py +++ b/basyx/aas/adapter/_generic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/adapter/aasx.py b/basyx/aas/adapter/aasx.py index 1c50feb3e..b9635a635 100644 --- a/basyx/aas/adapter/aasx.py +++ b/basyx/aas/adapter/aasx.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2024 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/adapter/json/json_deserialization.py b/basyx/aas/adapter/json/json_deserialization.py index 1e3aecbd1..4e99cdb54 100644 --- a/basyx/aas/adapter/json/json_deserialization.py +++ b/basyx/aas/adapter/json/json_deserialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/adapter/json/json_serialization.py b/basyx/aas/adapter/json/json_serialization.py index 2faadb82b..646fb234e 100644 --- a/basyx/aas/adapter/json/json_serialization.py +++ b/basyx/aas/adapter/json/json_serialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/adapter/xml/xml_deserialization.py b/basyx/aas/adapter/xml/xml_deserialization.py index 31b5012fb..27ceaf61e 100644 --- a/basyx/aas/adapter/xml/xml_deserialization.py +++ b/basyx/aas/adapter/xml/xml_deserialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/adapter/xml/xml_serialization.py b/basyx/aas/adapter/xml/xml_serialization.py index c6eb2be1c..e9cd9cc57 100644 --- a/basyx/aas/adapter/xml/xml_serialization.py +++ b/basyx/aas/adapter/xml/xml_serialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/backend/backends.py b/basyx/aas/backend/backends.py index c5a987a96..62f3ce6b4 100644 --- a/basyx/aas/backend/backends.py +++ b/basyx/aas/backend/backends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/backend/couchdb.py b/basyx/aas/backend/couchdb.py index b59186d97..1e8a82aaa 100644 --- a/basyx/aas/backend/couchdb.py +++ b/basyx/aas/backend/couchdb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/backend/local_file.py b/basyx/aas/backend/local_file.py index f5176dbc7..1f491f698 100644 --- a/basyx/aas/backend/local_file.py +++ b/basyx/aas/backend/local_file.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/compliance_tool/cli.py b/basyx/aas/compliance_tool/cli.py index 19f0bfbc8..21e4b8d67 100644 --- a/basyx/aas/compliance_tool/cli.py +++ b/basyx/aas/compliance_tool/cli.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/compliance_tool/compliance_check_aasx.py b/basyx/aas/compliance_tool/compliance_check_aasx.py index 9b9501abb..d35eaf21f 100644 --- a/basyx/aas/compliance_tool/compliance_check_aasx.py +++ b/basyx/aas/compliance_tool/compliance_check_aasx.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2024 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/compliance_tool/compliance_check_json.py b/basyx/aas/compliance_tool/compliance_check_json.py index d6b7a1ef2..c0255abd6 100644 --- a/basyx/aas/compliance_tool/compliance_check_json.py +++ b/basyx/aas/compliance_tool/compliance_check_json.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/compliance_tool/compliance_check_xml.py b/basyx/aas/compliance_tool/compliance_check_xml.py index 9791011af..8ce1c3bac 100644 --- a/basyx/aas/compliance_tool/compliance_check_xml.py +++ b/basyx/aas/compliance_tool/compliance_check_xml.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/compliance_tool/state_manager.py b/basyx/aas/compliance_tool/state_manager.py index 3116fe150..5ca53b47a 100644 --- a/basyx/aas/compliance_tool/state_manager.py +++ b/basyx/aas/compliance_tool/state_manager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/examples/data/_helper.py b/basyx/aas/examples/data/_helper.py index 2b19a304d..890f9d80f 100644 --- a/basyx/aas/examples/data/_helper.py +++ b/basyx/aas/examples/data/_helper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/examples/data/example_aas.py b/basyx/aas/examples/data/example_aas.py index b4c6e1f8f..c58a5635e 100644 --- a/basyx/aas/examples/data/example_aas.py +++ b/basyx/aas/examples/data/example_aas.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/examples/data/example_aas_mandatory_attributes.py b/basyx/aas/examples/data/example_aas_mandatory_attributes.py index e91b1dfa4..6ebbafff0 100644 --- a/basyx/aas/examples/data/example_aas_mandatory_attributes.py +++ b/basyx/aas/examples/data/example_aas_mandatory_attributes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/examples/data/example_aas_missing_attributes.py b/basyx/aas/examples/data/example_aas_missing_attributes.py index eac6cb440..443a96e63 100644 --- a/basyx/aas/examples/data/example_aas_missing_attributes.py +++ b/basyx/aas/examples/data/example_aas_missing_attributes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/examples/data/example_submodel_template.py b/basyx/aas/examples/data/example_submodel_template.py index ee572143c..0a01afea1 100644 --- a/basyx/aas/examples/data/example_submodel_template.py +++ b/basyx/aas/examples/data/example_submodel_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/model/aas.py b/basyx/aas/model/aas.py index 97eb160fc..95011e79f 100644 --- a/basyx/aas/model/aas.py +++ b/basyx/aas/model/aas.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/model/base.py b/basyx/aas/model/base.py index 513c64758..4826df37f 100644 --- a/basyx/aas/model/base.py +++ b/basyx/aas/model/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/model/concept.py b/basyx/aas/model/concept.py index 3f3029b23..42e0e0cdf 100644 --- a/basyx/aas/model/concept.py +++ b/basyx/aas/model/concept.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/model/datatypes.py b/basyx/aas/model/datatypes.py index a52e288d3..f20c4d045 100644 --- a/basyx/aas/model/datatypes.py +++ b/basyx/aas/model/datatypes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/model/provider.py b/basyx/aas/model/provider.py index c1bc4bdb8..eb8d410d0 100644 --- a/basyx/aas/model/provider.py +++ b/basyx/aas/model/provider.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/model/submodel.py b/basyx/aas/model/submodel.py index 47e5a2ff5..722704893 100644 --- a/basyx/aas/model/submodel.py +++ b/basyx/aas/model/submodel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2024 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/util/identification.py b/basyx/aas/util/identification.py index 71aa2b386..d190004cd 100644 --- a/basyx/aas/util/identification.py +++ b/basyx/aas/util/identification.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/basyx/aas/util/traversal.py b/basyx/aas/util/traversal.py index 97f1f568a..43a55af44 100644 --- a/basyx/aas/util/traversal.py +++ b/basyx/aas/util/traversal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/setup.py b/setup.py index 76695d6a3..2eab8b1c1 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (c) 2019-2021 the Eclipse BaSyx Authors +# Copyright (c) 2019-2024 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/_helper/setup_testdb.py b/test/_helper/setup_testdb.py index ba5c98095..5741fe930 100755 --- a/test/_helper/setup_testdb.py +++ b/test/_helper/setup_testdb.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/aasx/test_aasx.py b/test/adapter/aasx/test_aasx.py index 9a3111574..2fe4e0f33 100644 --- a/test/adapter/aasx/test_aasx.py +++ b/test/adapter/aasx/test_aasx.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2022 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/json/test_json_deserialization.py b/test/adapter/json/test_json_deserialization.py index 7f127be93..28da288cd 100644 --- a/test/adapter/json/test_json_deserialization.py +++ b/test/adapter/json/test_json_deserialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/json/test_json_serialization.py b/test/adapter/json/test_json_serialization.py index 3195c8a06..abae5e63b 100644 --- a/test/adapter/json/test_json_serialization.py +++ b/test/adapter/json/test_json_serialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/json/test_json_serialization_deserialization.py b/test/adapter/json/test_json_serialization_deserialization.py index 2d64af353..c0a523912 100644 --- a/test/adapter/json/test_json_serialization_deserialization.py +++ b/test/adapter/json/test_json_serialization_deserialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/xml/test_xml_deserialization.py b/test/adapter/xml/test_xml_deserialization.py index 4ff06aa60..6499818ef 100644 --- a/test/adapter/xml/test_xml_deserialization.py +++ b/test/adapter/xml/test_xml_deserialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/xml/test_xml_serialization.py b/test/adapter/xml/test_xml_serialization.py index c75bfeaa8..5d3930a2a 100644 --- a/test/adapter/xml/test_xml_serialization.py +++ b/test/adapter/xml/test_xml_serialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/adapter/xml/test_xml_serialization_deserialization.py b/test/adapter/xml/test_xml_serialization_deserialization.py index c32653914..f77c42c45 100644 --- a/test/adapter/xml/test_xml_serialization_deserialization.py +++ b/test/adapter/xml/test_xml_serialization_deserialization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/backend/test_backends.py b/test/backend/test_backends.py index 6ef33fd5e..a7f025558 100644 --- a/test/backend/test_backends.py +++ b/test/backend/test_backends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2022 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/backend/test_couchdb.py b/test/backend/test_couchdb.py index 06e364bbe..5e6c2fbe4 100644 --- a/test/backend/test_couchdb.py +++ b/test/backend/test_couchdb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/compliance_tool/test_aas_compliance_tool.py b/test/compliance_tool/test_aas_compliance_tool.py index 8cd3004db..f432d9476 100644 --- a/test/compliance_tool/test_aas_compliance_tool.py +++ b/test/compliance_tool/test_aas_compliance_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/compliance_tool/test_compliance_check_aasx.py b/test/compliance_tool/test_compliance_check_aasx.py index 438f0bb0e..c237f2167 100644 --- a/test/compliance_tool/test_compliance_check_aasx.py +++ b/test/compliance_tool/test_compliance_check_aasx.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2024 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/compliance_tool/test_compliance_check_json.py b/test/compliance_tool/test_compliance_check_json.py index b6201d108..af1f77553 100644 --- a/test/compliance_tool/test_compliance_check_json.py +++ b/test/compliance_tool/test_compliance_check_json.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/compliance_tool/test_compliance_check_xml.py b/test/compliance_tool/test_compliance_check_xml.py index a1658e508..f32dc1361 100644 --- a/test/compliance_tool/test_compliance_check_xml.py +++ b/test/compliance_tool/test_compliance_check_xml.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/compliance_tool/test_state_manager.py b/test/compliance_tool/test_state_manager.py index fc1c8260e..b74ba136e 100644 --- a/test/compliance_tool/test_state_manager.py +++ b/test/compliance_tool/test_state_manager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2022 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/examples/test_examples.py b/test/examples/test_examples.py index 7b79457bc..cacf9395c 100644 --- a/test/examples/test_examples.py +++ b/test/examples/test_examples.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/examples/test_helpers.py b/test/examples/test_helpers.py index 8fe4b7ae8..754d5cdfb 100644 --- a/test/examples/test_helpers.py +++ b/test/examples/test_helpers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/examples/test_tutorials.py b/test/examples/test_tutorials.py index 6b91cb060..b82c3bf7b 100644 --- a/test/examples/test_tutorials.py +++ b/test/examples/test_tutorials.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2022 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/model/test_base.py b/test/model/test_base.py index 44ac6861d..afc2a4628 100644 --- a/test/model/test_base.py +++ b/test/model/test_base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/model/test_datatypes.py b/test/model/test_datatypes.py index f66a04791..be4666c28 100644 --- a/test/model/test_datatypes.py +++ b/test/model/test_datatypes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/model/test_provider.py b/test/model/test_provider.py index 55586ffc8..549232cc3 100644 --- a/test/model/test_provider.py +++ b/test/model/test_provider.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/model/test_submodel.py b/test/model/test_submodel.py index 74c12328d..15746bd5d 100644 --- a/test/model/test_submodel.py +++ b/test/model/test_submodel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2023 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. diff --git a/test/util/test_identification.py b/test/util/test_identification.py index 418423dea..9a43ea16b 100644 --- a/test/util/test_identification.py +++ b/test/util/test_identification.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 the Eclipse BaSyx Authors +# Copyright (c) 2022 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project.