From 79fbc79c12908e5a21a77f236e2f5d35cf83198c Mon Sep 17 00:00:00 2001 From: Patricio Cubillos Date: Thu, 17 Jan 2019 11:03:25 +0100 Subject: [PATCH 1/2] Updated copyright year. --- LICENSE | 2 +- MCcubed/VERSION.py | 2 +- MCcubed/__init__.py | 2 +- MCcubed/fit/__init__.py | 2 +- MCcubed/fit/modelfit.py | 2 +- MCcubed/mc/__init__.py | 2 +- MCcubed/mc/chain.py | 2 +- MCcubed/mc/driver.py | 2 +- MCcubed/mc/gelman_rubin.py | 2 +- MCcubed/mc/mcmc.py | 2 +- MCcubed/plots/__init__.py | 2 +- MCcubed/plots/mcplots.py | 2 +- MCcubed/rednoise/__init__.py | 2 +- MCcubed/rednoise/prayer.py | 2 +- MCcubed/utils/__init__.py | 2 +- MCcubed/utils/log.py | 2 +- MCcubed/utils/mcutils.py | 2 +- docs/license.rst | 2 +- mc3.py | 2 +- src_c/binarray.c | 2 +- src_c/chisq.c | 2 +- src_c/dwt.c | 2 +- src_c/include/ind.h | 2 +- src_c/include/stats.h | 2 +- src_c/include/wavelet.h | 2 +- src_c/timeavg.c | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/LICENSE b/LICENSE index 8e9525f..ab59075 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015-2018 Patricio Cubillos and contributors. +Copyright (c) 2015-2019 Patricio Cubillos and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/MCcubed/VERSION.py b/MCcubed/VERSION.py index 2065e67..e8aff23 100644 --- a/MCcubed/VERSION.py +++ b/MCcubed/VERSION.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). # MC3 Version: diff --git a/MCcubed/__init__.py b/MCcubed/__init__.py index 4a44eb9..7303b11 100644 --- a/MCcubed/__init__.py +++ b/MCcubed/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ['mcmc', 'fit', 'mc', 'plots', 'utils', 'rednoise'] diff --git a/MCcubed/fit/__init__.py b/MCcubed/fit/__init__.py index 8ca84bd..154f4a7 100644 --- a/MCcubed/fit/__init__.py +++ b/MCcubed/fit/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). from .modelfit import * diff --git a/MCcubed/fit/modelfit.py b/MCcubed/fit/modelfit.py index 5ccf9a2..0c69e12 100644 --- a/MCcubed/fit/modelfit.py +++ b/MCcubed/fit/modelfit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["modelfit", "residuals"] diff --git a/MCcubed/mc/__init__.py b/MCcubed/mc/__init__.py index 5ea7e0a..bc6bb74 100644 --- a/MCcubed/mc/__init__.py +++ b/MCcubed/mc/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). from .driver import * diff --git a/MCcubed/mc/chain.py b/MCcubed/mc/chain.py index ba9dee8..dbf6a70 100644 --- a/MCcubed/mc/chain.py +++ b/MCcubed/mc/chain.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). import sys diff --git a/MCcubed/mc/driver.py b/MCcubed/mc/driver.py index 946f8d0..da3e0ef 100644 --- a/MCcubed/mc/driver.py +++ b/MCcubed/mc/driver.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["mcmc", "parse"] diff --git a/MCcubed/mc/gelman_rubin.py b/MCcubed/mc/gelman_rubin.py index 7a7e6f2..f538f5e 100644 --- a/MCcubed/mc/gelman_rubin.py +++ b/MCcubed/mc/gelman_rubin.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["gelmanrubin"] diff --git a/MCcubed/mc/mcmc.py b/MCcubed/mc/mcmc.py index 0d8bdb2..80bc1ac 100644 --- a/MCcubed/mc/mcmc.py +++ b/MCcubed/mc/mcmc.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ =["mcmc"] diff --git a/MCcubed/plots/__init__.py b/MCcubed/plots/__init__.py index b8cb9ac..d00912b 100644 --- a/MCcubed/plots/__init__.py +++ b/MCcubed/plots/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). from .mcplots import __all__ diff --git a/MCcubed/plots/mcplots.py b/MCcubed/plots/mcplots.py index c03274e..a22dc65 100644 --- a/MCcubed/plots/mcplots.py +++ b/MCcubed/plots/mcplots.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["trace", "pairwise", "histogram", "RMS", "modelfit", "subplotter"] diff --git a/MCcubed/rednoise/__init__.py b/MCcubed/rednoise/__init__.py index 6b4318f..cd215da 100644 --- a/MCcubed/rednoise/__init__.py +++ b/MCcubed/rednoise/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["binrms", "prayer"] diff --git a/MCcubed/rednoise/prayer.py b/MCcubed/rednoise/prayer.py index cfff2e3..47f1eba 100644 --- a/MCcubed/rednoise/prayer.py +++ b/MCcubed/rednoise/prayer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). import sys diff --git a/MCcubed/utils/__init__.py b/MCcubed/utils/__init__.py index 7411c75..08ccf1c 100644 --- a/MCcubed/utils/__init__.py +++ b/MCcubed/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). from .mcutils import * diff --git a/MCcubed/utils/log.py b/MCcubed/utils/log.py index d6e5bab..b7c5a3a 100644 --- a/MCcubed/utils/log.py +++ b/MCcubed/utils/log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["Log"] diff --git a/MCcubed/utils/mcutils.py b/MCcubed/utils/mcutils.py index a326b35..52ecb2a 100644 --- a/MCcubed/utils/mcutils.py +++ b/MCcubed/utils/mcutils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). __all__ = ["parray", "saveascii", "loadascii", "savebin", "loadbin", diff --git a/docs/license.rst b/docs/license.rst index 0dedffe..e1ccc59 100644 --- a/docs/license.rst +++ b/docs/license.rst @@ -5,7 +5,7 @@ License The MIT License (MIT) -Copyright (c) 2015-2018 Patricio Cubillos and Collaborators +Copyright (c) 2015-2019 Patricio Cubillos and Collaborators Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/mc3.py b/mc3.py index b93ecf3..d24f364 100755 --- a/mc3.py +++ b/mc3.py @@ -1,6 +1,6 @@ #! /usr/bin/env python -# Copyright (c) 2015-2018 Patricio Cubillos and contributors. +# Copyright (c) 2015-2019 Patricio Cubillos and contributors. # MC3 is open-source software under the MIT license (see LICENSE). import sys diff --git a/src_c/binarray.c b/src_c/binarray.c index 00bc7aa..51a214a 100644 --- a/src_c/binarray.c +++ b/src_c/binarray.c @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). #include diff --git a/src_c/chisq.c b/src_c/chisq.c index 7d650cc..a7a3232 100644 --- a/src_c/chisq.c +++ b/src_c/chisq.c @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). #include diff --git a/src_c/dwt.c b/src_c/dwt.c index 667a84c..0a2f2dc 100644 --- a/src_c/dwt.c +++ b/src_c/dwt.c @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). #include diff --git a/src_c/include/ind.h b/src_c/include/ind.h index 1b2699c..3e3db09 100644 --- a/src_c/include/ind.h +++ b/src_c/include/ind.h @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). /* Definitions for indexing Numpy arrays: */ diff --git a/src_c/include/stats.h b/src_c/include/stats.h index 9799443..f0acf0d 100644 --- a/src_c/include/stats.h +++ b/src_c/include/stats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). /****************************************************************** diff --git a/src_c/include/wavelet.h b/src_c/include/wavelet.h index ea3b79b..05f2dad 100644 --- a/src_c/include/wavelet.h +++ b/src_c/include/wavelet.h @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). /********************************************************************** diff --git a/src_c/timeavg.c b/src_c/timeavg.c index 444539b..0219047 100644 --- a/src_c/timeavg.c +++ b/src_c/timeavg.c @@ -1,4 +1,4 @@ -// Copyright (c) 2015-2018 Patricio Cubillos and contributors. +// Copyright (c) 2015-2019 Patricio Cubillos and contributors. // MC3 is open-source software under the MIT license (see LICENSE). #include From bd09563c21f0ac0a8c81a6776adbedbf56bc681d Mon Sep 17 00:00:00 2001 From: Patricio Cubillos Date: Thu, 17 Jan 2019 11:05:12 +0100 Subject: [PATCH 2/2] Bumped MC3 version to 2.3.23. --- MCcubed/VERSION.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCcubed/VERSION.py b/MCcubed/VERSION.py index e8aff23..63efd13 100644 --- a/MCcubed/VERSION.py +++ b/MCcubed/VERSION.py @@ -4,4 +4,4 @@ # MC3 Version: MC3_VER = 2 # Major version MC3_MIN = 3 # Minor version -MC3_REV = 22 # Revision +MC3_REV = 23 # Revision