From 17ecd766b4889702a8a7c652f57bc2c56bd6eda3 Mon Sep 17 00:00:00 2001 From: Johannes Mueller Date: Tue, 29 Aug 2023 10:25:42 +0200 Subject: [PATCH] Update copyright notices to 2023 Signed-off-by: Johannes Mueller --- LICENSE | 2 +- src/pylife/core/__init__.py | 2 +- src/pylife/core/broadcaster.py | 2 +- src/pylife/core/data_validator.py | 2 +- src/pylife/core/pylifesignal.py | 2 +- src/pylife/materialdata/woehler/__init__.py | 2 +- src/pylife/materialdata/woehler/bayesian.py | 2 +- src/pylife/materialdata/woehler/elementary.py | 2 +- src/pylife/materialdata/woehler/fatigue_data.py | 2 +- src/pylife/materialdata/woehler/likelihood.py | 2 +- src/pylife/materialdata/woehler/maxlike.py | 2 +- src/pylife/materialdata/woehler/pearl_chain.py | 2 +- src/pylife/materialdata/woehler/probit.py | 2 +- src/pylife/materialdata/woehler/pymc_dummy.py | 2 +- src/pylife/materiallaws/__init__.py | 2 +- src/pylife/materiallaws/hookeslaw.py | 2 +- src/pylife/materiallaws/rambgood.py | 2 +- src/pylife/materiallaws/true_stress_strain.py | 2 +- src/pylife/materiallaws/woehlercurve.py | 2 +- src/pylife/mesh/__init__.py | 2 +- src/pylife/mesh/gradient.py | 2 +- src/pylife/mesh/hotspot.py | 2 +- src/pylife/mesh/meshmapping.py | 2 +- src/pylife/mesh/meshsignal.py | 2 +- src/pylife/strength/__init__.py | 2 +- src/pylife/strength/failure_probability.py | 2 +- src/pylife/strength/fatigue.py | 2 +- src/pylife/strength/helpers.py | 2 +- src/pylife/strength/meanstress.py | 2 +- src/pylife/strength/miner.py | 2 +- src/pylife/strength/sn_curve.py | 2 +- src/pylife/strength/solidity.py | 2 +- src/pylife/stress/__init__.py | 2 +- src/pylife/stress/collective/__init__.py | 2 +- src/pylife/stress/collective/abstract_load_collective.py | 2 +- src/pylife/stress/collective/load_collective.py | 2 +- src/pylife/stress/collective/load_histogram.py | 2 +- src/pylife/stress/equistress.py | 2 +- src/pylife/stress/frequencysignal.py | 2 +- src/pylife/stress/rainflow/__init__.py | 2 +- src/pylife/stress/rainflow/compat.py | 2 +- src/pylife/stress/rainflow/fkm.py | 2 +- src/pylife/stress/rainflow/fourpoint.py | 2 +- src/pylife/stress/rainflow/general.py | 2 +- src/pylife/stress/rainflow/recorders.py | 2 +- src/pylife/stress/rainflow/threepoint.py | 2 +- src/pylife/stress/stresssignal.py | 2 +- src/pylife/stress/timesignal.py | 2 +- src/pylife/utils/functions.py | 2 +- src/pylife/utils/histogram.py | 2 +- src/pylife/utils/probability_data.py | 2 +- src/pylife/vmap/vmap_attribute.py | 2 +- src/pylife/vmap/vmap_coordinate_system.py | 3 +-- src/pylife/vmap/vmap_dataset.py | 2 +- src/pylife/vmap/vmap_element_type.py | 2 +- src/pylife/vmap/vmap_export.py | 2 +- src/pylife/vmap/vmap_import.py | 2 +- src/pylife/vmap/vmap_integration_type.py | 2 +- src/pylife/vmap/vmap_metadata.py | 2 +- src/pylife/vmap/vmap_section.py | 2 +- src/pylife/vmap/vmap_structures.py | 2 +- src/pylife/vmap/vmap_unit_system.py | 2 +- tests/__init__.py | 2 +- tests/core/test_broadcaster.py | 2 +- tests/core/test_signal.py | 2 +- tests/demos/__init__.py | 2 +- tests/demos/test_demo_notebooks.py | 2 +- tests/materialdata/woehler/__init__.py | 2 +- tests/materialdata/woehler/test_analyzer.py | 2 +- tests/materialdata/woehler/test_bayesian_pymc.py | 2 +- tests/materialdata/woehler/test_no_pymc.py | 2 +- tests/materiallaws/test_woehlercurve.py | 2 +- tests/mesh/test_gradient.py | 2 +- tests/mesh/test_hotspot.py | 2 +- tests/mesh/test_meshmapping.py | 2 +- tests/mesh/test_meshsignal.py | 2 +- tests/strength/data.py | 2 +- tests/strength/test_failure_probability.py | 2 +- tests/strength/test_fatigue.py | 2 +- tests/strength/test_haigh_diagram.py | 2 +- tests/strength/test_meanstress.py | 2 +- tests/strength/test_meanstress_collective.py | 2 +- tests/strength/test_meanstress_matrix.py | 2 +- tests/strength/test_miner.py | 2 +- tests/strength/test_solidity.py | 2 +- tests/stress/collective/test_load_collective.py | 2 +- tests/stress/collective/test_load_histogram.py | 2 +- tests/stress/rainflow/test_compat.py | 2 +- tests/stress/rainflow/test_fkm.py | 2 +- tests/stress/rainflow/test_fourpoint.py | 2 +- tests/stress/rainflow/test_recorders.py | 2 +- tests/stress/rainflow/test_threepoint.py | 2 +- tests/stress/rainflow/test_turnsdetect.py | 2 +- tests/stress/test_equistress.py | 2 +- tests/stress/test_frequencysignal.py | 2 +- tests/stress/test_stresssignal.py | 2 +- tests/stress/test_timesignal.py | 2 +- tests/stress/test_timesignal_no_tsfresh.py | 2 +- tests/utils/test_functions.py | 2 +- tests/utils/test_histogram.py | 2 +- tests/utils/test_probability_data.py | 2 +- tools/odbclient/tests/test_odbclient.py | 2 +- 102 files changed, 102 insertions(+), 103 deletions(-) diff --git a/LICENSE b/LICENSE index f08f6b6a..db84d012 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019-2022 Robert Bosch GmbH + Copyright 2019-2023 Robert Bosch GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/pylife/core/__init__.py b/src/pylife/core/__init__.py index bf5e74b6..87f0fbb1 100644 --- a/src/pylife/core/__init__.py +++ b/src/pylife/core/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/core/broadcaster.py b/src/pylife/core/broadcaster.py index 1a1a4f69..84fab640 100644 --- a/src/pylife/core/broadcaster.py +++ b/src/pylife/core/broadcaster.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/core/data_validator.py b/src/pylife/core/data_validator.py index a26ac9fa..4690833e 100644 --- a/src/pylife/core/data_validator.py +++ b/src/pylife/core/data_validator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/core/pylifesignal.py b/src/pylife/core/pylifesignal.py index d2a53a91..352f30fc 100644 --- a/src/pylife/core/pylifesignal.py +++ b/src/pylife/core/pylifesignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/__init__.py b/src/pylife/materialdata/woehler/__init__.py index 90e7a819..b6562b6f 100644 --- a/src/pylife/materialdata/woehler/__init__.py +++ b/src/pylife/materialdata/woehler/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/bayesian.py b/src/pylife/materialdata/woehler/bayesian.py index 18323dd4..cc8b29dc 100644 --- a/src/pylife/materialdata/woehler/bayesian.py +++ b/src/pylife/materialdata/woehler/bayesian.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/elementary.py b/src/pylife/materialdata/woehler/elementary.py index 69fd6d24..bb1fe266 100644 --- a/src/pylife/materialdata/woehler/elementary.py +++ b/src/pylife/materialdata/woehler/elementary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/fatigue_data.py b/src/pylife/materialdata/woehler/fatigue_data.py index a1f6f03e..cd2cc35b 100644 --- a/src/pylife/materialdata/woehler/fatigue_data.py +++ b/src/pylife/materialdata/woehler/fatigue_data.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/likelihood.py b/src/pylife/materialdata/woehler/likelihood.py index fe64f5cc..b4d732c6 100644 --- a/src/pylife/materialdata/woehler/likelihood.py +++ b/src/pylife/materialdata/woehler/likelihood.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/maxlike.py b/src/pylife/materialdata/woehler/maxlike.py index badff927..cc4e36ee 100644 --- a/src/pylife/materialdata/woehler/maxlike.py +++ b/src/pylife/materialdata/woehler/maxlike.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/pearl_chain.py b/src/pylife/materialdata/woehler/pearl_chain.py index a69b4b75..1dc14162 100644 --- a/src/pylife/materialdata/woehler/pearl_chain.py +++ b/src/pylife/materialdata/woehler/pearl_chain.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/probit.py b/src/pylife/materialdata/woehler/probit.py index bfac6939..12dd8b5a 100644 --- a/src/pylife/materialdata/woehler/probit.py +++ b/src/pylife/materialdata/woehler/probit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materialdata/woehler/pymc_dummy.py b/src/pylife/materialdata/woehler/pymc_dummy.py index 1d745d68..85256285 100644 --- a/src/pylife/materialdata/woehler/pymc_dummy.py +++ b/src/pylife/materialdata/woehler/pymc_dummy.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materiallaws/__init__.py b/src/pylife/materiallaws/__init__.py index c7593893..c81c92e1 100644 --- a/src/pylife/materiallaws/__init__.py +++ b/src/pylife/materiallaws/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materiallaws/hookeslaw.py b/src/pylife/materiallaws/hookeslaw.py index 3dc13242..96c2661c 100644 --- a/src/pylife/materiallaws/hookeslaw.py +++ b/src/pylife/materiallaws/hookeslaw.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materiallaws/rambgood.py b/src/pylife/materiallaws/rambgood.py index 1043c2af..6ed80e27 100644 --- a/src/pylife/materiallaws/rambgood.py +++ b/src/pylife/materiallaws/rambgood.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materiallaws/true_stress_strain.py b/src/pylife/materiallaws/true_stress_strain.py index e67b35f3..676d3c03 100644 --- a/src/pylife/materiallaws/true_stress_strain.py +++ b/src/pylife/materiallaws/true_stress_strain.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/materiallaws/woehlercurve.py b/src/pylife/materiallaws/woehlercurve.py index 9f615262..dee366b1 100644 --- a/src/pylife/materiallaws/woehlercurve.py +++ b/src/pylife/materiallaws/woehlercurve.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/mesh/__init__.py b/src/pylife/mesh/__init__.py index 4194ff6f..0afffa35 100644 --- a/src/pylife/mesh/__init__.py +++ b/src/pylife/mesh/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/mesh/gradient.py b/src/pylife/mesh/gradient.py index cf21c1b1..2c77f208 100644 --- a/src/pylife/mesh/gradient.py +++ b/src/pylife/mesh/gradient.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/mesh/hotspot.py b/src/pylife/mesh/hotspot.py index 1b8ed796..21fda0ff 100644 --- a/src/pylife/mesh/hotspot.py +++ b/src/pylife/mesh/hotspot.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/mesh/meshmapping.py b/src/pylife/mesh/meshmapping.py index 31921c7c..2624effd 100644 --- a/src/pylife/mesh/meshmapping.py +++ b/src/pylife/mesh/meshmapping.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/mesh/meshsignal.py b/src/pylife/mesh/meshsignal.py index 34e3fe77..0117a41c 100644 --- a/src/pylife/mesh/meshsignal.py +++ b/src/pylife/mesh/meshsignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/__init__.py b/src/pylife/strength/__init__.py index 4e7efe39..f6365834 100644 --- a/src/pylife/strength/__init__.py +++ b/src/pylife/strength/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/failure_probability.py b/src/pylife/strength/failure_probability.py index 464cc62c..ac08f44f 100644 --- a/src/pylife/strength/failure_probability.py +++ b/src/pylife/strength/failure_probability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/fatigue.py b/src/pylife/strength/fatigue.py index d700e914..70bc2e67 100644 --- a/src/pylife/strength/fatigue.py +++ b/src/pylife/strength/fatigue.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/helpers.py b/src/pylife/strength/helpers.py index f40eb5e8..35c1ebbe 100644 --- a/src/pylife/strength/helpers.py +++ b/src/pylife/strength/helpers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/meanstress.py b/src/pylife/strength/meanstress.py index 369794be..c590e0da 100644 --- a/src/pylife/strength/meanstress.py +++ b/src/pylife/strength/meanstress.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/miner.py b/src/pylife/strength/miner.py index b73e0ef1..1eae38a9 100644 --- a/src/pylife/strength/miner.py +++ b/src/pylife/strength/miner.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/sn_curve.py b/src/pylife/strength/sn_curve.py index 4833f95c..097fa05d 100644 --- a/src/pylife/strength/sn_curve.py +++ b/src/pylife/strength/sn_curve.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/strength/solidity.py b/src/pylife/strength/solidity.py index 4fb0c968..28065c56 100644 --- a/src/pylife/strength/solidity.py +++ b/src/pylife/strength/solidity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/__init__.py b/src/pylife/stress/__init__.py index a1a2da7b..af20a2ce 100644 --- a/src/pylife/stress/__init__.py +++ b/src/pylife/stress/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/collective/__init__.py b/src/pylife/stress/collective/__init__.py index 9a86422c..99c3ea7b 100644 --- a/src/pylife/stress/collective/__init__.py +++ b/src/pylife/stress/collective/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/collective/abstract_load_collective.py b/src/pylife/stress/collective/abstract_load_collective.py index e45771a6..3f3d23b1 100644 --- a/src/pylife/stress/collective/abstract_load_collective.py +++ b/src/pylife/stress/collective/abstract_load_collective.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/collective/load_collective.py b/src/pylife/stress/collective/load_collective.py index abe6af69..ade4c6d5 100644 --- a/src/pylife/stress/collective/load_collective.py +++ b/src/pylife/stress/collective/load_collective.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/collective/load_histogram.py b/src/pylife/stress/collective/load_histogram.py index 3b319590..a2a7f6ea 100644 --- a/src/pylife/stress/collective/load_histogram.py +++ b/src/pylife/stress/collective/load_histogram.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/equistress.py b/src/pylife/stress/equistress.py index eb3f61b6..80eba2f8 100644 --- a/src/pylife/stress/equistress.py +++ b/src/pylife/stress/equistress.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/frequencysignal.py b/src/pylife/stress/frequencysignal.py index 773ac058..d5fac708 100644 --- a/src/pylife/stress/frequencysignal.py +++ b/src/pylife/stress/frequencysignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/__init__.py b/src/pylife/stress/rainflow/__init__.py index 539c364f..dfdc253a 100644 --- a/src/pylife/stress/rainflow/__init__.py +++ b/src/pylife/stress/rainflow/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/compat.py b/src/pylife/stress/rainflow/compat.py index 3c4b9f23..56f1bbc6 100644 --- a/src/pylife/stress/rainflow/compat.py +++ b/src/pylife/stress/rainflow/compat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/fkm.py b/src/pylife/stress/rainflow/fkm.py index a40fa402..6321d12f 100644 --- a/src/pylife/stress/rainflow/fkm.py +++ b/src/pylife/stress/rainflow/fkm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/fourpoint.py b/src/pylife/stress/rainflow/fourpoint.py index 5a8cf9c9..1260864b 100644 --- a/src/pylife/stress/rainflow/fourpoint.py +++ b/src/pylife/stress/rainflow/fourpoint.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/general.py b/src/pylife/stress/rainflow/general.py index 0c115ddd..d9b335c3 100644 --- a/src/pylife/stress/rainflow/general.py +++ b/src/pylife/stress/rainflow/general.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/recorders.py b/src/pylife/stress/rainflow/recorders.py index e6794432..e560d83f 100644 --- a/src/pylife/stress/rainflow/recorders.py +++ b/src/pylife/stress/rainflow/recorders.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/rainflow/threepoint.py b/src/pylife/stress/rainflow/threepoint.py index 47a0bf2c..8d1eef5f 100644 --- a/src/pylife/stress/rainflow/threepoint.py +++ b/src/pylife/stress/rainflow/threepoint.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/stresssignal.py b/src/pylife/stress/stresssignal.py index 0de1bc13..d383084c 100644 --- a/src/pylife/stress/stresssignal.py +++ b/src/pylife/stress/stresssignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/stress/timesignal.py b/src/pylife/stress/timesignal.py index 43d81088..eeb35176 100644 --- a/src/pylife/stress/timesignal.py +++ b/src/pylife/stress/timesignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/utils/functions.py b/src/pylife/utils/functions.py index 84c75cc2..68c6cc2c 100644 --- a/src/pylife/utils/functions.py +++ b/src/pylife/utils/functions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/utils/histogram.py b/src/pylife/utils/histogram.py index e41ac992..d2f648f5 100644 --- a/src/pylife/utils/histogram.py +++ b/src/pylife/utils/histogram.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/utils/probability_data.py b/src/pylife/utils/probability_data.py index 7f2303af..fb21e348 100644 --- a/src/pylife/utils/probability_data.py +++ b/src/pylife/utils/probability_data.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_attribute.py b/src/pylife/vmap/vmap_attribute.py index 62427d92..076164e1 100644 --- a/src/pylife/vmap/vmap_attribute.py +++ b/src/pylife/vmap/vmap_attribute.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_coordinate_system.py b/src/pylife/vmap/vmap_coordinate_system.py index f8dcbb21..e0c6848b 100644 --- a/src/pylife/vmap/vmap_coordinate_system.py +++ b/src/pylife/vmap/vmap_coordinate_system.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # @@ -45,4 +45,3 @@ def dtype(self): @property def dataset_name(self): return 'COORDINATESYSTEM' - diff --git a/src/pylife/vmap/vmap_dataset.py b/src/pylife/vmap/vmap_dataset.py index 18071226..b103f4c9 100644 --- a/src/pylife/vmap/vmap_dataset.py +++ b/src/pylife/vmap/vmap_dataset.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_element_type.py b/src/pylife/vmap/vmap_element_type.py index bd46ba54..d9607887 100644 --- a/src/pylife/vmap/vmap_element_type.py +++ b/src/pylife/vmap/vmap_element_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_export.py b/src/pylife/vmap/vmap_export.py index cad4c87c..c140cc6b 100644 --- a/src/pylife/vmap/vmap_export.py +++ b/src/pylife/vmap/vmap_export.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_import.py b/src/pylife/vmap/vmap_import.py index 798a8ee8..be8019f2 100644 --- a/src/pylife/vmap/vmap_import.py +++ b/src/pylife/vmap/vmap_import.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_integration_type.py b/src/pylife/vmap/vmap_integration_type.py index 9fa6faf0..ef84c075 100644 --- a/src/pylife/vmap/vmap_integration_type.py +++ b/src/pylife/vmap/vmap_integration_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_metadata.py b/src/pylife/vmap/vmap_metadata.py index f29a8529..a7b45145 100644 --- a/src/pylife/vmap/vmap_metadata.py +++ b/src/pylife/vmap/vmap_metadata.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_section.py b/src/pylife/vmap/vmap_section.py index dec56fff..fc67274c 100644 --- a/src/pylife/vmap/vmap_section.py +++ b/src/pylife/vmap/vmap_section.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_structures.py b/src/pylife/vmap/vmap_structures.py index 59ecda88..aebf8fe1 100644 --- a/src/pylife/vmap/vmap_structures.py +++ b/src/pylife/vmap/vmap_structures.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/src/pylife/vmap/vmap_unit_system.py b/src/pylife/vmap/vmap_unit_system.py index 464792ab..58f99005 100644 --- a/src/pylife/vmap/vmap_unit_system.py +++ b/src/pylife/vmap/vmap_unit_system.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 - for information on the respective copyright owner +# Copyright (c) 2020-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/__init__.py b/tests/__init__.py index fa6ad8e2..25304dd9 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/core/test_broadcaster.py b/tests/core/test_broadcaster.py index 39d91d9e..520f5b05 100644 --- a/tests/core/test_broadcaster.py +++ b/tests/core/test_broadcaster.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/core/test_signal.py b/tests/core/test_signal.py index a0ea6699..570aa656 100644 --- a/tests/core/test_signal.py +++ b/tests/core/test_signal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/demos/__init__.py b/tests/demos/__init__.py index c8bcac78..ae13d8db 100644 --- a/tests/demos/__init__.py +++ b/tests/demos/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/demos/test_demo_notebooks.py b/tests/demos/test_demo_notebooks.py index c185b388..90c280de 100644 --- a/tests/demos/test_demo_notebooks.py +++ b/tests/demos/test_demo_notebooks.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/materialdata/woehler/__init__.py b/tests/materialdata/woehler/__init__.py index 6a282d2a..b9e8ed1d 100644 --- a/tests/materialdata/woehler/__init__.py +++ b/tests/materialdata/woehler/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/materialdata/woehler/test_analyzer.py b/tests/materialdata/woehler/test_analyzer.py index dadd5430..4daafe72 100644 --- a/tests/materialdata/woehler/test_analyzer.py +++ b/tests/materialdata/woehler/test_analyzer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/materialdata/woehler/test_bayesian_pymc.py b/tests/materialdata/woehler/test_bayesian_pymc.py index e571183d..c1c53048 100644 --- a/tests/materialdata/woehler/test_bayesian_pymc.py +++ b/tests/materialdata/woehler/test_bayesian_pymc.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/materialdata/woehler/test_no_pymc.py b/tests/materialdata/woehler/test_no_pymc.py index 97c3f447..9c5901f9 100644 --- a/tests/materialdata/woehler/test_no_pymc.py +++ b/tests/materialdata/woehler/test_no_pymc.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/materiallaws/test_woehlercurve.py b/tests/materiallaws/test_woehlercurve.py index a0a5eba3..41de4e21 100644 --- a/tests/materiallaws/test_woehlercurve.py +++ b/tests/materiallaws/test_woehlercurve.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/mesh/test_gradient.py b/tests/mesh/test_gradient.py index 2121a7dd..839dec5d 100644 --- a/tests/mesh/test_gradient.py +++ b/tests/mesh/test_gradient.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/mesh/test_hotspot.py b/tests/mesh/test_hotspot.py index 5ba16cf7..2249ca4b 100644 --- a/tests/mesh/test_hotspot.py +++ b/tests/mesh/test_hotspot.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/mesh/test_meshmapping.py b/tests/mesh/test_meshmapping.py index 2404ea93..09f4aaf7 100644 --- a/tests/mesh/test_meshmapping.py +++ b/tests/mesh/test_meshmapping.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/mesh/test_meshsignal.py b/tests/mesh/test_meshsignal.py index 0b5922e2..21c2122f 100644 --- a/tests/mesh/test_meshsignal.py +++ b/tests/mesh/test_meshsignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/data.py b/tests/strength/data.py index ff6b5224..fb721a80 100644 --- a/tests/strength/data.py +++ b/tests/strength/data.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_failure_probability.py b/tests/strength/test_failure_probability.py index 8075e7f3..3c871d73 100644 --- a/tests/strength/test_failure_probability.py +++ b/tests/strength/test_failure_probability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_fatigue.py b/tests/strength/test_fatigue.py index cd5cea07..66cd6fbb 100644 --- a/tests/strength/test_fatigue.py +++ b/tests/strength/test_fatigue.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_haigh_diagram.py b/tests/strength/test_haigh_diagram.py index 0c4d0ab4..ab3291b7 100644 --- a/tests/strength/test_haigh_diagram.py +++ b/tests/strength/test_haigh_diagram.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_meanstress.py b/tests/strength/test_meanstress.py index 37be6fbb..12ff3668 100644 --- a/tests/strength/test_meanstress.py +++ b/tests/strength/test_meanstress.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_meanstress_collective.py b/tests/strength/test_meanstress_collective.py index 9b69e64b..530de4ba 100644 --- a/tests/strength/test_meanstress_collective.py +++ b/tests/strength/test_meanstress_collective.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_meanstress_matrix.py b/tests/strength/test_meanstress_matrix.py index 6f1a6af4..b4b32e77 100644 --- a/tests/strength/test_meanstress_matrix.py +++ b/tests/strength/test_meanstress_matrix.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_miner.py b/tests/strength/test_miner.py index fffaaa3a..ccaedd9a 100644 --- a/tests/strength/test_miner.py +++ b/tests/strength/test_miner.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/strength/test_solidity.py b/tests/strength/test_solidity.py index 65f6ae08..504b4c46 100644 --- a/tests/strength/test_solidity.py +++ b/tests/strength/test_solidity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/collective/test_load_collective.py b/tests/stress/collective/test_load_collective.py index f64600cd..917e4ebe 100644 --- a/tests/stress/collective/test_load_collective.py +++ b/tests/stress/collective/test_load_collective.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/collective/test_load_histogram.py b/tests/stress/collective/test_load_histogram.py index cc77a071..513e7ff0 100644 --- a/tests/stress/collective/test_load_histogram.py +++ b/tests/stress/collective/test_load_histogram.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/rainflow/test_compat.py b/tests/stress/rainflow/test_compat.py index 5f364a13..c8aa6ae3 100644 --- a/tests/stress/rainflow/test_compat.py +++ b/tests/stress/rainflow/test_compat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/rainflow/test_fkm.py b/tests/stress/rainflow/test_fkm.py index 6e3beb63..d434a8a8 100644 --- a/tests/stress/rainflow/test_fkm.py +++ b/tests/stress/rainflow/test_fkm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/rainflow/test_fourpoint.py b/tests/stress/rainflow/test_fourpoint.py index 07c01127..de35c934 100644 --- a/tests/stress/rainflow/test_fourpoint.py +++ b/tests/stress/rainflow/test_fourpoint.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/rainflow/test_recorders.py b/tests/stress/rainflow/test_recorders.py index 4b30782e..a765a558 100644 --- a/tests/stress/rainflow/test_recorders.py +++ b/tests/stress/rainflow/test_recorders.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/rainflow/test_threepoint.py b/tests/stress/rainflow/test_threepoint.py index 17981145..12d85e93 100644 --- a/tests/stress/rainflow/test_threepoint.py +++ b/tests/stress/rainflow/test_threepoint.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/rainflow/test_turnsdetect.py b/tests/stress/rainflow/test_turnsdetect.py index 5155ddcd..2717d352 100644 --- a/tests/stress/rainflow/test_turnsdetect.py +++ b/tests/stress/rainflow/test_turnsdetect.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/test_equistress.py b/tests/stress/test_equistress.py index 079a37b4..6190c4f2 100644 --- a/tests/stress/test_equistress.py +++ b/tests/stress/test_equistress.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/test_frequencysignal.py b/tests/stress/test_frequencysignal.py index 24c96734..faad75d2 100644 --- a/tests/stress/test_frequencysignal.py +++ b/tests/stress/test_frequencysignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/test_stresssignal.py b/tests/stress/test_stresssignal.py index 29cd46fb..651ce9f5 100644 --- a/tests/stress/test_stresssignal.py +++ b/tests/stress/test_stresssignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/test_timesignal.py b/tests/stress/test_timesignal.py index 04220b88..e0ea89d5 100644 --- a/tests/stress/test_timesignal.py +++ b/tests/stress/test_timesignal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/stress/test_timesignal_no_tsfresh.py b/tests/stress/test_timesignal_no_tsfresh.py index 6661945e..6a8c08d0 100644 --- a/tests/stress/test_timesignal_no_tsfresh.py +++ b/tests/stress/test_timesignal_no_tsfresh.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/utils/test_functions.py b/tests/utils/test_functions.py index bd2d5c82..fbfc2e4e 100644 --- a/tests/utils/test_functions.py +++ b/tests/utils/test_functions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/utils/test_histogram.py b/tests/utils/test_histogram.py index ce8a6b9b..edc49547 100644 --- a/tests/utils/test_histogram.py +++ b/tests/utils/test_histogram.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tests/utils/test_probability_data.py b/tests/utils/test_probability_data.py index 4ea75a95..7a9e5723 100644 --- a/tests/utils/test_probability_data.py +++ b/tests/utils/test_probability_data.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife # diff --git a/tools/odbclient/tests/test_odbclient.py b/tools/odbclient/tests/test_odbclient.py index b9dda827..03adff71 100644 --- a/tools/odbclient/tests/test_odbclient.py +++ b/tools/odbclient/tests/test_odbclient.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 - for information on the respective copyright owner +# Copyright (c) 2019-2023 - for information on the respective copyright owner # see the NOTICE file and/or the repository # https://github.com/boschresearch/pylife #