From 5220aaa9db06e9a8e2ff4ec9eb5b35e1001f7813 Mon Sep 17 00:00:00 2001 From: Ross Whitfield Date: Thu, 13 Oct 2022 10:09:33 -0400 Subject: [PATCH] Update Copyright dates --- LICENSE | 2 +- doc/conf.py | 4 ++-- doc/examples/component_skeleton.py | 2 +- doc/examples/example_comp.py | 2 +- doc/examples/skeleton_comp.py | 2 +- ipsframework/cca_es_spec.py | 2 +- ipsframework/component.py | 2 +- ipsframework/componentRegistry.py | 2 +- ipsframework/configurationManager.py | 2 +- ipsframework/convert_log_function.py | 2 +- ipsframework/dakota_bridge.py | 2 +- ipsframework/dataManager.py | 2 +- ipsframework/debug.py | 2 +- ipsframework/eventService.py | 2 +- ipsframework/eventServiceProxy.py | 2 +- ipsframework/ips.py | 2 +- ipsframework/ipsExceptions.py | 2 +- ipsframework/ips_dakota_client.py | 2 +- ipsframework/ips_dakota_dynamic.py | 2 +- ipsframework/ips_es_spec.py | 2 +- ipsframework/ipsutil.py | 2 +- ipsframework/messages.py | 2 +- ipsframework/node_structure.py | 2 +- ipsframework/platformspec.py | 2 +- ipsframework/portalBridge.py | 2 +- ipsframework/resourceManager.py | 2 +- ipsframework/runspaceInitComponent.py | 2 +- ipsframework/services.py | 2 +- ipsframework/taskManager.py | 2 +- ipsframework/topicManager.py | 2 +- setup.py | 1 + tests/components/drivers/basic_concurrent1.py | 2 +- tests/components/drivers/basic_serial1.py | 2 +- tests/components/drivers/basic_serial2.py | 2 +- tests/components/workers/large_worker.py | 2 +- tests/components/workers/medium_worker.py | 2 +- tests/components/workers/small_worker.py | 2 +- tests/dakota/dakota_test_Gaussian.py | 2 +- tests/dakota/dakota_test_Rosenbrock.py | 2 +- tests/hello-world-nested/hello_driver.py | 2 +- tests/hello-world-nested/hello_driver_sub.py | 2 +- tests/hello-world-nested/hello_worker.py | 2 +- tests/helloworld/hello_driver.py | 2 +- tests/helloworld/hello_worker.py | 2 +- tests/helloworld/hello_worker_launch_task.py | 2 +- tests/helloworld/hello_worker_task_pool.py | 2 +- tests/helloworld/hello_worker_task_pool_dask.py | 2 +- 47 files changed, 48 insertions(+), 47 deletions(-) diff --git a/LICENSE b/LICENSE index 307bd889..d845e872 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2006-2021, UT-Battelle, LLC. All rights reserved. +Copyright 2006-2022, UT-Battelle, LLC. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/doc/conf.py b/doc/conf.py index acd85174..e728c56a 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,5 +1,5 @@ #------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. #------------------------------------------------------------------------------- # -*- coding: utf-8 -*- # @@ -43,7 +43,7 @@ # General information about the project. project = u'Integrated Plasma Simulator (IPS)' -copyright = u'2006-2021, UT-Battelle, LLC' +copyright = u'2006-2022, UT-Battelle, LLC' from ipsframework._version import get_versions # The version info for the project you're documenting, acts as replacement for diff --git a/doc/examples/component_skeleton.py b/doc/examples/component_skeleton.py index 698733f0..65326980 100644 --- a/doc/examples/component_skeleton.py +++ b/doc/examples/component_skeleton.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ diff --git a/doc/examples/example_comp.py b/doc/examples/example_comp.py index 9a52367f..2ef57256 100644 --- a/doc/examples/example_comp.py +++ b/doc/examples/example_comp.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ diff --git a/doc/examples/skeleton_comp.py b/doc/examples/skeleton_comp.py index d4b8f365..d36f1375 100644 --- a/doc/examples/skeleton_comp.py +++ b/doc/examples/skeleton_comp.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ diff --git a/ipsframework/cca_es_spec.py b/ipsframework/cca_es_spec.py index 787a6734..077667c3 100644 --- a/ipsframework/cca_es_spec.py +++ b/ipsframework/cca_es_spec.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ The CCA event service, but without CCA-specific extensions: diff --git a/ipsframework/component.py b/ipsframework/component.py index efb5847d..1c24da00 100644 --- a/ipsframework/component.py +++ b/ipsframework/component.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """IPS Framework Component""" import sys diff --git a/ipsframework/componentRegistry.py b/ipsframework/componentRegistry.py index 8e9436ad..0027f2b3 100644 --- a/ipsframework/componentRegistry.py +++ b/ipsframework/componentRegistry.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import sys diff --git a/ipsframework/configurationManager.py b/ipsframework/configurationManager.py index 95249404..ff2e592d 100644 --- a/ipsframework/configurationManager.py +++ b/ipsframework/configurationManager.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os import sys diff --git a/ipsframework/convert_log_function.py b/ipsframework/convert_log_function.py index b05b9192..c823a4be 100644 --- a/ipsframework/convert_log_function.py +++ b/ipsframework/convert_log_function.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework.utils import HTML diff --git a/ipsframework/dakota_bridge.py b/ipsframework/dakota_bridge.py index ada9177a..c909b9cc 100644 --- a/ipsframework/dakota_bridge.py +++ b/ipsframework/dakota_bridge.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os import sys diff --git a/ipsframework/dataManager.py b/ipsframework/dataManager.py index fa823cf5..979e74c0 100644 --- a/ipsframework/dataManager.py +++ b/ipsframework/dataManager.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import sys import os diff --git a/ipsframework/debug.py b/ipsframework/debug.py index 040f68b7..aa984f0c 100644 --- a/ipsframework/debug.py +++ b/ipsframework/debug.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ This file writes debug messages to 'debug.out' file if the environment diff --git a/ipsframework/eventService.py b/ipsframework/eventService.py index a4aec788..a7c012f7 100644 --- a/ipsframework/eventService.py +++ b/ipsframework/eventService.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ This file hosts the central event service and is not directly accessible to IPS. diff --git a/ipsframework/eventServiceProxy.py b/ipsframework/eventServiceProxy.py index 4d86897f..87049f01 100644 --- a/ipsframework/eventServiceProxy.py +++ b/ipsframework/eventServiceProxy.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- diff --git a/ipsframework/ips.py b/ipsframework/ips.py index 039d18c0..7ece92f0 100755 --- a/ipsframework/ips.py +++ b/ipsframework/ips.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ The Integrated Plasma Simulator (IPS) Framework. This framework enables diff --git a/ipsframework/ipsExceptions.py b/ipsframework/ipsExceptions.py index 9887762f..e0c60d09 100644 --- a/ipsframework/ipsExceptions.py +++ b/ipsframework/ipsExceptions.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- diff --git a/ipsframework/ips_dakota_client.py b/ipsframework/ips_dakota_client.py index cbac1d71..c510e721 100755 --- a/ipsframework/ips_dakota_client.py +++ b/ipsframework/ips_dakota_client.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os diff --git a/ipsframework/ips_dakota_dynamic.py b/ipsframework/ips_dakota_dynamic.py index 2fbda411..2c5faeb4 100755 --- a/ipsframework/ips_dakota_dynamic.py +++ b/ipsframework/ips_dakota_dynamic.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os diff --git a/ipsframework/ips_es_spec.py b/ipsframework/ips_es_spec.py index dd092cca..f0ea8491 100644 --- a/ipsframework/ips_es_spec.py +++ b/ipsframework/ips_es_spec.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from .cca_es_spec import EventListener, PublisherEventService, SubscriberEventService diff --git a/ipsframework/ipsutil.py b/ipsframework/ipsutil.py index d217c46d..ea039699 100644 --- a/ipsframework/ipsutil.py +++ b/ipsframework/ipsutil.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os import shutil diff --git a/ipsframework/messages.py b/ipsframework/messages.py index c485774c..911b9854 100644 --- a/ipsframework/messages.py +++ b/ipsframework/messages.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- diff --git a/ipsframework/node_structure.py b/ipsframework/node_structure.py index 0acf1ffb..a4241863 100644 --- a/ipsframework/node_structure.py +++ b/ipsframework/node_structure.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ Node structures for RM are implemented here for convenience. diff --git a/ipsframework/platformspec.py b/ipsframework/platformspec.py index 7da11d86..9f6a0a2f 100644 --- a/ipsframework/platformspec.py +++ b/ipsframework/platformspec.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os import sys diff --git a/ipsframework/portalBridge.py b/ipsframework/portalBridge.py index 746a0505..8e297c60 100644 --- a/ipsframework/portalBridge.py +++ b/ipsframework/portalBridge.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import re diff --git a/ipsframework/resourceManager.py b/ipsframework/resourceManager.py index fe0a58ea..37485c3a 100644 --- a/ipsframework/resourceManager.py +++ b/ipsframework/resourceManager.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- # local version import os diff --git a/ipsframework/runspaceInitComponent.py b/ipsframework/runspaceInitComponent.py index fa0d7dd0..dc22f1db 100644 --- a/ipsframework/runspaceInitComponent.py +++ b/ipsframework/runspaceInitComponent.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from ipsframework import Component diff --git a/ipsframework/services.py b/ipsframework/services.py index b5eba2e0..a2e70b9e 100644 --- a/ipsframework/services.py +++ b/ipsframework/services.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """IPS Services""" import sys diff --git a/ipsframework/taskManager.py b/ipsframework/taskManager.py index af4e383b..c6e2a5fa 100644 --- a/ipsframework/taskManager.py +++ b/ipsframework/taskManager.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from math import ceil diff --git a/ipsframework/topicManager.py b/ipsframework/topicManager.py index 1404f2a9..69716331 100644 --- a/ipsframework/topicManager.py +++ b/ipsframework/topicManager.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ This file hosts the TopicManager class that manages the set of events and diff --git a/setup.py b/setup.py index f9d36931..e53377d1 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', "License :: OSI Approved :: BSD License", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", diff --git a/tests/components/drivers/basic_concurrent1.py b/tests/components/drivers/basic_concurrent1.py index 5effb96f..afc4255b 100644 --- a/tests/components/drivers/basic_concurrent1.py +++ b/tests/components/drivers/basic_concurrent1.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ This test driver tests the basic functionality of a serial simulation. diff --git a/tests/components/drivers/basic_serial1.py b/tests/components/drivers/basic_serial1.py index e9b07f40..e199c2f5 100644 --- a/tests/components/drivers/basic_serial1.py +++ b/tests/components/drivers/basic_serial1.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ This test driver tests the basic functionality of a serial simulation. diff --git a/tests/components/drivers/basic_serial2.py b/tests/components/drivers/basic_serial2.py index ee4d460d..0f2ec5a0 100644 --- a/tests/components/drivers/basic_serial2.py +++ b/tests/components/drivers/basic_serial2.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- """ This test driver tests the basic functionality of a serial simulation. diff --git a/tests/components/workers/large_worker.py b/tests/components/workers/large_worker.py index 1d05902e..55e1a2b8 100644 --- a/tests/components/workers/large_worker.py +++ b/tests/components/workers/large_worker.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from ipsframework import Component diff --git a/tests/components/workers/medium_worker.py b/tests/components/workers/medium_worker.py index 151ce797..f9d26ecf 100644 --- a/tests/components/workers/medium_worker.py +++ b/tests/components/workers/medium_worker.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from ipsframework import Component diff --git a/tests/components/workers/small_worker.py b/tests/components/workers/small_worker.py index 63478c9e..524c472f 100644 --- a/tests/components/workers/small_worker.py +++ b/tests/components/workers/small_worker.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from ipsframework import Component diff --git a/tests/dakota/dakota_test_Gaussian.py b/tests/dakota/dakota_test_Gaussian.py index f8320654..adcb6387 100755 --- a/tests/dakota/dakota_test_Gaussian.py +++ b/tests/dakota/dakota_test_Gaussian.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from math import exp diff --git a/tests/dakota/dakota_test_Rosenbrock.py b/tests/dakota/dakota_test_Rosenbrock.py index 45cfdd14..1469171a 100755 --- a/tests/dakota/dakota_test_Rosenbrock.py +++ b/tests/dakota/dakota_test_Rosenbrock.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import os from ipsframework import Component diff --git a/tests/hello-world-nested/hello_driver.py b/tests/hello-world-nested/hello_driver.py index 489623ae..70547fe8 100644 --- a/tests/hello-world-nested/hello_driver.py +++ b/tests/hello-world-nested/hello_driver.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework import Component diff --git a/tests/hello-world-nested/hello_driver_sub.py b/tests/hello-world-nested/hello_driver_sub.py index 3f0a3c5f..70892542 100644 --- a/tests/hello-world-nested/hello_driver_sub.py +++ b/tests/hello-world-nested/hello_driver_sub.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework import Component diff --git a/tests/hello-world-nested/hello_worker.py b/tests/hello-world-nested/hello_worker.py index 1ea748f9..92a9df68 100644 --- a/tests/hello-world-nested/hello_worker.py +++ b/tests/hello-world-nested/hello_worker.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework import Component diff --git a/tests/helloworld/hello_driver.py b/tests/helloworld/hello_driver.py index 0c878aaf..6eb2ec35 100644 --- a/tests/helloworld/hello_driver.py +++ b/tests/helloworld/hello_driver.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework import Component diff --git a/tests/helloworld/hello_worker.py b/tests/helloworld/hello_worker.py index 05a79ff1..0fa1e97e 100644 --- a/tests/helloworld/hello_worker.py +++ b/tests/helloworld/hello_worker.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework import Component diff --git a/tests/helloworld/hello_worker_launch_task.py b/tests/helloworld/hello_worker_launch_task.py index 4ab08ce2..8500006a 100644 --- a/tests/helloworld/hello_worker_launch_task.py +++ b/tests/helloworld/hello_worker_launch_task.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- import time from ipsframework import Component diff --git a/tests/helloworld/hello_worker_task_pool.py b/tests/helloworld/hello_worker_task_pool.py index 0df527c2..021b4b7e 100644 --- a/tests/helloworld/hello_worker_task_pool.py +++ b/tests/helloworld/hello_worker_task_pool.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from ipsframework import Component diff --git a/tests/helloworld/hello_worker_task_pool_dask.py b/tests/helloworld/hello_worker_task_pool_dask.py index a64e1024..2412db7e 100644 --- a/tests/helloworld/hello_worker_task_pool_dask.py +++ b/tests/helloworld/hello_worker_task_pool_dask.py @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------- -# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information. +# Copyright 2006-2022 UT-Battelle, LLC. See LICENSE for more information. # ------------------------------------------------------------------------------- from time import sleep import copy