From 7077f14097941d2efabf07a6b5376ff02c2cf4bf Mon Sep 17 00:00:00 2001 From: "valentin.emiya" <valentin.emiya@lif.univ-mrs.fr> Date: Thu, 3 Dec 2020 17:11:21 +0100 Subject: [PATCH] change version number to 0.1.4 --- python/VERSION | 2 +- python/setup.py | 2 +- python/tffpy/create_subregions.py | 2 +- python/tffpy/datasets.py | 2 +- python/tffpy/experiments/exp_solve_tff.py | 2 +- python/tffpy/experiments/exp_variance.py | 48 +++++++++++++++++++ .../experiments/tests/test_exp_solve_tff.py | 2 +- .../experiments/tests/test_exp_variance.py | 2 +- python/tffpy/experiments/yafe_slurm.py | 48 +++++++++++++++++++ python/tffpy/interpolation_solver.py | 2 +- python/tffpy/scripts/script_exp_solve_tff.py | 2 +- python/tffpy/scripts/script_exp_variance.py | 2 +- python/tffpy/tests/ci_config.py | 2 +- python/tffpy/tests/test_create_subregions.py | 2 +- python/tffpy/tests/test_datasets.py | 2 +- .../tffpy/tests/test_interpolation_solver.py | 2 +- python/tffpy/tests/test_tf_fading.py | 2 +- python/tffpy/tests/test_utils.py | 2 +- python/tffpy/tf_fading.py | 2 +- python/tffpy/tf_tools.py | 2 +- python/tffpy/utils.py | 2 +- 21 files changed, 115 insertions(+), 19 deletions(-) diff --git a/python/VERSION b/python/VERSION index 7029df1..5f13de8 100755 --- a/python/VERSION +++ b/python/VERSION @@ -1 +1 @@ -tffpy:0.1.3 +tffpy:0.1.4 diff --git a/python/setup.py b/python/setup.py index 690309a..9b16a66 100755 --- a/python/setup.py +++ b/python/setup.py @@ -29,7 +29,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/create_subregions.py b/python/tffpy/create_subregions.py index 87494c9..131170e 100644 --- a/python/tffpy/create_subregions.py +++ b/python/tffpy/create_subregions.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/datasets.py b/python/tffpy/datasets.py index 900d444..783a5fc 100644 --- a/python/tffpy/datasets.py +++ b/python/tffpy/datasets.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/experiments/exp_solve_tff.py b/python/tffpy/experiments/exp_solve_tff.py index 0e19bbc..55f008f 100644 --- a/python/tffpy/experiments/exp_solve_tff.py +++ b/python/tffpy/experiments/exp_solve_tff.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/experiments/exp_variance.py b/python/tffpy/experiments/exp_variance.py index c96d11a..20ff950 100644 --- a/python/tffpy/experiments/exp_variance.py +++ b/python/tffpy/experiments/exp_variance.py @@ -1,4 +1,52 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# Credits +# ####### +# +# Copyright(c) 2020-2020 +# ---------------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * `Valentin Emiya <mailto:valentin.emiya@lis-lab.fr>`_ +# * `Ama Marina Krémé <mailto:ama-marina.kreme@lis-lab.fr>`_ +# +# This package has been created thanks to the joint work with Florent Jaillet +# and Ronan Hamon on other packages. +# +# Description +# ----------- +# +# Time frequency fading using Gabor multipliers +# +# Version +# ------- +# +# * tffpy version = 0.1.4 +# +# Licence +# ------- +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """ .. moduleauthor:: Valentin Emiya diff --git a/python/tffpy/experiments/tests/test_exp_solve_tff.py b/python/tffpy/experiments/tests/test_exp_solve_tff.py index 018a6d4..9c165e3 100644 --- a/python/tffpy/experiments/tests/test_exp_solve_tff.py +++ b/python/tffpy/experiments/tests/test_exp_solve_tff.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/experiments/tests/test_exp_variance.py b/python/tffpy/experiments/tests/test_exp_variance.py index 8918c58..1a2d7ce 100644 --- a/python/tffpy/experiments/tests/test_exp_variance.py +++ b/python/tffpy/experiments/tests/test_exp_variance.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/experiments/yafe_slurm.py b/python/tffpy/experiments/yafe_slurm.py index 1c7f497..0ecb018 100644 --- a/python/tffpy/experiments/yafe_slurm.py +++ b/python/tffpy/experiments/yafe_slurm.py @@ -1,4 +1,52 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# Credits +# ####### +# +# Copyright(c) 2020-2020 +# ---------------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * `Valentin Emiya <mailto:valentin.emiya@lis-lab.fr>`_ +# * `Ama Marina Krémé <mailto:ama-marina.kreme@lis-lab.fr>`_ +# +# This package has been created thanks to the joint work with Florent Jaillet +# and Ronan Hamon on other packages. +# +# Description +# ----------- +# +# Time frequency fading using Gabor multipliers +# +# Version +# ------- +# +# * tffpy version = 0.1.4 +# +# Licence +# ------- +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """ .. moduleauthor:: Valentin Emiya diff --git a/python/tffpy/interpolation_solver.py b/python/tffpy/interpolation_solver.py index 6ef9366..d6a6fc4 100644 --- a/python/tffpy/interpolation_solver.py +++ b/python/tffpy/interpolation_solver.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/scripts/script_exp_solve_tff.py b/python/tffpy/scripts/script_exp_solve_tff.py index 7be15ce..51071ec 100644 --- a/python/tffpy/scripts/script_exp_solve_tff.py +++ b/python/tffpy/scripts/script_exp_solve_tff.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/scripts/script_exp_variance.py b/python/tffpy/scripts/script_exp_variance.py index f139a1d..7155cdb 100644 --- a/python/tffpy/scripts/script_exp_variance.py +++ b/python/tffpy/scripts/script_exp_variance.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tests/ci_config.py b/python/tffpy/tests/ci_config.py index 3ea2700..2bb36b8 100644 --- a/python/tffpy/tests/ci_config.py +++ b/python/tffpy/tests/ci_config.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tests/test_create_subregions.py b/python/tffpy/tests/test_create_subregions.py index 6436ef1..0729376 100644 --- a/python/tffpy/tests/test_create_subregions.py +++ b/python/tffpy/tests/test_create_subregions.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tests/test_datasets.py b/python/tffpy/tests/test_datasets.py index 2c1c894..8db1aed 100644 --- a/python/tffpy/tests/test_datasets.py +++ b/python/tffpy/tests/test_datasets.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tests/test_interpolation_solver.py b/python/tffpy/tests/test_interpolation_solver.py index e18a321..dcfe9da 100644 --- a/python/tffpy/tests/test_interpolation_solver.py +++ b/python/tffpy/tests/test_interpolation_solver.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tests/test_tf_fading.py b/python/tffpy/tests/test_tf_fading.py index ee86169..a92bec6 100644 --- a/python/tffpy/tests/test_tf_fading.py +++ b/python/tffpy/tests/test_tf_fading.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tests/test_utils.py b/python/tffpy/tests/test_utils.py index 035f7bf..23097d7 100644 --- a/python/tffpy/tests/test_utils.py +++ b/python/tffpy/tests/test_utils.py @@ -31,7 +31,7 @@ import tempfile # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tf_fading.py b/python/tffpy/tf_fading.py index 1981b0c..c6e2e6e 100644 --- a/python/tffpy/tf_fading.py +++ b/python/tffpy/tf_fading.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/tf_tools.py b/python/tffpy/tf_tools.py index 52c5798..752faa9 100755 --- a/python/tffpy/tf_tools.py +++ b/python/tffpy/tf_tools.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- diff --git a/python/tffpy/utils.py b/python/tffpy/utils.py index 67b36ec..66055e1 100755 --- a/python/tffpy/utils.py +++ b/python/tffpy/utils.py @@ -28,7 +28,7 @@ # Version # ------- # -# * tffpy version = 0.1.3 +# * tffpy version = 0.1.4 # # Licence # ------- -- GitLab