From 6c624e5a233d4a38ec71361f411c95648e3619db Mon Sep 17 00:00:00 2001 From: mmckerns Date: Sun, 31 Dec 2023 20:21:52 -0500 Subject: [PATCH] updated copyright for 2024 --- LICENSE | 2 +- dill/__diff.py | 2 +- dill/__init__.py | 2 +- dill/_dill.py | 2 +- dill/_objects.py | 2 +- dill/_shims.py | 2 +- dill/detect.py | 2 +- dill/logger.py | 2 +- dill/objtypes.py | 2 +- dill/pointers.py | 2 +- dill/session.py | 2 +- dill/settings.py | 2 +- dill/source.py | 2 +- dill/temp.py | 2 +- dill/tests/__init__.py | 2 +- dill/tests/__main__.py | 2 +- dill/tests/test_abc.py | 5 +++++ dill/tests/test_check.py | 2 +- dill/tests/test_classdef.py | 2 +- dill/tests/test_dataclasses.py | 2 +- dill/tests/test_detect.py | 2 +- dill/tests/test_dictviews.py | 2 +- dill/tests/test_diff.py | 2 +- dill/tests/test_extendpickle.py | 2 +- dill/tests/test_fglobals.py | 2 +- dill/tests/test_file.py | 2 +- dill/tests/test_functions.py | 2 +- dill/tests/test_functors.py | 2 +- dill/tests/test_logger.py | 2 +- dill/tests/test_mixins.py | 2 +- dill/tests/test_module.py | 2 +- dill/tests/test_moduledict.py | 2 +- dill/tests/test_nested.py | 2 +- dill/tests/test_objects.py | 2 +- dill/tests/test_properties.py | 2 +- dill/tests/test_pycapsule.py | 2 +- dill/tests/test_recursive.py | 2 +- dill/tests/test_registered.py | 2 +- dill/tests/test_restricted.py | 2 +- dill/tests/test_selected.py | 2 +- dill/tests/test_session.py | 2 +- dill/tests/test_source.py | 2 +- dill/tests/test_temp.py | 2 +- dill/tests/test_weakref.py | 2 +- scripts/get_gprof | 2 +- scripts/get_objgraph | 2 +- scripts/undill | 2 +- setup.py | 2 +- version.py | 4 ++-- 49 files changed, 54 insertions(+), 49 deletions(-) diff --git a/LICENSE b/LICENSE index 62794ddf..1eb999e0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ Copyright (c) 2004-2016 California Institute of Technology. -Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. All rights reserved. This software is available subject to the conditions and terms laid diff --git a/dill/__diff.py b/dill/__diff.py index 0be3fc32..8a893753 100644 --- a/dill/__diff.py +++ b/dill/__diff.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/__init__.py b/dill/__init__.py index 54679b7d..549048a4 100644 --- a/dill/__init__.py +++ b/dill/__init__.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/_dill.py b/dill/_dill.py index d7afd5fb..756b0aef 100644 --- a/dill/_dill.py +++ b/dill/_dill.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2015 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/_objects.py b/dill/_objects.py index 414c62d0..b2c02d3b 100644 --- a/dill/_objects.py +++ b/dill/_objects.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/_shims.py b/dill/_shims.py index 7018b686..da1abbec 100644 --- a/dill/_shims.py +++ b/dill/_shims.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Author: Anirudh Vegesana (avegesan@cs.stanford.edu) -# Copyright (c) 2021-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2021-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/detect.py b/dill/detect.py index 4f02a7b3..6f76e729 100644 --- a/dill/detect.py +++ b/dill/detect.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/logger.py b/dill/logger.py index 8704bfbe..d975e8ef 100644 --- a/dill/logger.py +++ b/dill/logger.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # Author: Leonardo Gama (@leogama) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/objtypes.py b/dill/objtypes.py index ae16a41e..526b5835 100644 --- a/dill/objtypes.py +++ b/dill/objtypes.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/pointers.py b/dill/pointers.py index 814559ba..c3b48cae 100644 --- a/dill/pointers.py +++ b/dill/pointers.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/session.py b/dill/session.py index 74234ab2..e91068af 100644 --- a/dill/session.py +++ b/dill/session.py @@ -3,7 +3,7 @@ # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Author: Leonardo Gama (@leogama) # Copyright (c) 2008-2015 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/settings.py b/dill/settings.py index dc29b82e..19c18fc5 100644 --- a/dill/settings.py +++ b/dill/settings.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/source.py b/dill/source.py index 52673dae..1d7bd0d3 100644 --- a/dill/source.py +++ b/dill/source.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE # diff --git a/dill/temp.py b/dill/temp.py index e2a8abed..c4d7165e 100644 --- a/dill/temp.py +++ b/dill/temp.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/__init__.py b/dill/tests/__init__.py index c8837ea8..3fbec382 100644 --- a/dill/tests/__init__.py +++ b/dill/tests/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2018-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2018-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/__main__.py b/dill/tests/__main__.py index 6836bdef..b84d24cb 100644 --- a/dill/tests/__main__.py +++ b/dill/tests/__main__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2018-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2018-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_abc.py b/dill/tests/test_abc.py index 2b1bfda8..b16d3092 100644 --- a/dill/tests/test_abc.py +++ b/dill/tests/test_abc.py @@ -1,4 +1,9 @@ #!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2023-2024 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE """ test dill's ability to pickle abstract base class objects """ diff --git a/dill/tests/test_check.py b/dill/tests/test_check.py index fbd426e3..c0ab757a 100644 --- a/dill/tests/test_check.py +++ b/dill/tests/test_check.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_classdef.py b/dill/tests/test_classdef.py index 57e6d582..b09df50c 100644 --- a/dill/tests/test_classdef.py +++ b/dill/tests/test_classdef.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_dataclasses.py b/dill/tests/test_dataclasses.py index 34bda319..10dc51c5 100644 --- a/dill/tests/test_dataclasses.py +++ b/dill/tests/test_dataclasses.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Author: Anirudh Vegesana (avegesan@cs.stanford.edu) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/test_detect.py b/dill/tests/test_detect.py index 5f060198..342cc1ac 100644 --- a/dill/tests/test_detect.py +++ b/dill/tests/test_detect.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_dictviews.py b/dill/tests/test_dictviews.py index 42a2de63..4e94ce32 100644 --- a/dill/tests/test_dictviews.py +++ b/dill/tests/test_dictviews.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Author: Anirudh Vegesana (avegesan@cs.stanford.edu) -# Copyright (c) 2021-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2021-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_diff.py b/dill/tests/test_diff.py index e72e8efb..a1753053 100644 --- a/dill/tests/test_diff.py +++ b/dill/tests/test_diff.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_extendpickle.py b/dill/tests/test_extendpickle.py index a6abc76a..3b274d4b 100644 --- a/dill/tests/test_extendpickle.py +++ b/dill/tests/test_extendpickle.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_fglobals.py b/dill/tests/test_fglobals.py index 8540a130..80b35654 100644 --- a/dill/tests/test_fglobals.py +++ b/dill/tests/test_fglobals.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2021-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2021-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_file.py b/dill/tests/test_file.py index a92d3100..ad949f36 100644 --- a/dill/tests/test_file.py +++ b/dill/tests/test_file.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_functions.py b/dill/tests/test_functions.py index f2e4146b..305acc65 100644 --- a/dill/tests/test_functions.py +++ b/dill/tests/test_functions.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2019-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2019-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_functors.py b/dill/tests/test_functors.py index ffe29dff..1008be69 100644 --- a/dill/tests/test_functors.py +++ b/dill/tests/test_functors.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_logger.py b/dill/tests/test_logger.py index 92f2fd4b..b878a105 100644 --- a/dill/tests/test_logger.py +++ b/dill/tests/test_logger.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Author: Leonardo Gama (@leogama) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_mixins.py b/dill/tests/test_mixins.py index 606b534c..6d67dade 100644 --- a/dill/tests/test_mixins.py +++ b/dill/tests/test_mixins.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_module.py b/dill/tests/test_module.py index e9a7504c..b696d728 100644 --- a/dill/tests/test_module.py +++ b/dill/tests/test_module.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_moduledict.py b/dill/tests/test_moduledict.py index 9357e931..5e6e87b3 100644 --- a/dill/tests/test_moduledict.py +++ b/dill/tests/test_moduledict.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_nested.py b/dill/tests/test_nested.py index 08f8f24f..9109f55c 100644 --- a/dill/tests/test_nested.py +++ b/dill/tests/test_nested.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/test_objects.py b/dill/tests/test_objects.py index 0735a1ca..7db288de 100644 --- a/dill/tests/test_objects.py +++ b/dill/tests/test_objects.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/test_properties.py b/dill/tests/test_properties.py index 35076a16..df3f5b58 100644 --- a/dill/tests/test_properties.py +++ b/dill/tests/test_properties.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_pycapsule.py b/dill/tests/test_pycapsule.py index c10e0f34..34ca00c3 100644 --- a/dill/tests/test_pycapsule.py +++ b/dill/tests/test_pycapsule.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Author: Anirudh Vegesana (avegesan@cs.stanford.edu) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/test_recursive.py b/dill/tests/test_recursive.py index c56392a8..b84f19e4 100644 --- a/dill/tests/test_recursive.py +++ b/dill/tests/test_recursive.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2019-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2019-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_registered.py b/dill/tests/test_registered.py index 10455b08..393e2f3e 100644 --- a/dill/tests/test_registered.py +++ b/dill/tests/test_registered.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/test_restricted.py b/dill/tests/test_restricted.py index 362232cb..cdb773e3 100644 --- a/dill/tests/test_restricted.py +++ b/dill/tests/test_restricted.py @@ -2,7 +2,7 @@ # # Author: Kirill Makhonin (@kirillmakhonin) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_selected.py b/dill/tests/test_selected.py index 94607f8d..d8db5c04 100644 --- a/dill/tests/test_selected.py +++ b/dill/tests/test_selected.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/dill/tests/test_session.py b/dill/tests/test_session.py index 36c0890b..200642de 100644 --- a/dill/tests/test_session.py +++ b/dill/tests/test_session.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Author: Leonardo Gama (@leogama) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_source.py b/dill/tests/test_source.py index da887b7b..8771a542 100644 --- a/dill/tests/test_source.py +++ b/dill/tests/test_source.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_temp.py b/dill/tests/test_temp.py index f3c5d67a..30ae35a3 100644 --- a/dill/tests/test_temp.py +++ b/dill/tests/test_temp.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/dill/tests/test_weakref.py b/dill/tests/test_weakref.py index 3ddf3ae5..df5cbce9 100644 --- a/dill/tests/test_weakref.py +++ b/dill/tests/test_weakref.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/scripts/get_gprof b/scripts/get_gprof index c595d3ba..ab0eace6 100644 --- a/scripts/get_gprof +++ b/scripts/get_gprof @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE ''' diff --git a/scripts/get_objgraph b/scripts/get_objgraph index 85409e74..09dc144b 100644 --- a/scripts/get_objgraph +++ b/scripts/get_objgraph @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/scripts/undill b/scripts/undill index 1c6305bc..d8a524a3 100644 --- a/scripts/undill +++ b/scripts/undill @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ diff --git a/setup.py b/setup.py index bde82a41..fee161b4 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. -# Copyright (c) 2016-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2016-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE diff --git a/version.py b/version.py index f1b260e8..b0a21bf6 100644 --- a/version.py +++ b/version.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2022-2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2022-2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE @@ -70,7 +70,7 @@ def write_info_file(dirpath, modulename, **info): header = '''#!/usr/bin/env python # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) -# Copyright (c) 2023 The Uncertainty Quantification Foundation. +# Copyright (c) 2024 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/%s/blob/master/LICENSE ''' % modulename #XXX: author and email are hardwired in the header