diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 949c35204..4e5ba6268 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -19,7 +19,7 @@ Minimum working example of code A clear and concise description of what you expected to happen. #### Python environement: - - exSpy version: 0.x.x + - eXSpy version: 0.x.x - HyperSpy version: 1.x.x - Python version: 3.x diff --git a/exspy/components/pes_core_line_shape.py b/exspy/components/pes_core_line_shape.py index a0966ba2d..51add6825 100644 --- a/exspy/components/pes_core_line_shape.py +++ b/exspy/components/pes_core_line_shape.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np import math diff --git a/exspy/components/pes_see.py b/exspy/components/pes_see.py index 806d8a07c..68445ad55 100644 --- a/exspy/components/pes_see.py +++ b/exspy/components/pes_see.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np diff --git a/exspy/components/pes_voigt.py b/exspy/components/pes_voigt.py index 2ec27030e..073e3a148 100644 --- a/exspy/components/pes_voigt.py +++ b/exspy/components/pes_voigt.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np import math diff --git a/exspy/components/volume_plasmon_drude.py b/exspy/components/volume_plasmon_drude.py index bbe040f51..751459f82 100644 --- a/exspy/components/volume_plasmon_drude.py +++ b/exspy/components/volume_plasmon_drude.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np diff --git a/exspy/tests/components/test_pes_core_line_shape.py b/exspy/tests/components/test_pes_core_line_shape.py index f25089f6e..1facb84e4 100644 --- a/exspy/tests/components/test_pes_core_line_shape.py +++ b/exspy/tests/components/test_pes_core_line_shape.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np import pytest diff --git a/exspy/tests/components/test_pes_see.py b/exspy/tests/components/test_pes_see.py index 43d95d636..4f4363a49 100644 --- a/exspy/tests/components/test_pes_see.py +++ b/exspy/tests/components/test_pes_see.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np diff --git a/exspy/tests/components/test_pes_voigt.py b/exspy/tests/components/test_pes_voigt.py index ad60e8c2d..d77a45d55 100644 --- a/exspy/tests/components/test_pes_voigt.py +++ b/exspy/tests/components/test_pes_voigt.py @@ -1,21 +1,21 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import itertools diff --git a/exspy/tests/components/test_volume_plasmon_drude.py b/exspy/tests/components/test_volume_plasmon_drude.py index e97ff87bc..87abf3a24 100644 --- a/exspy/tests/components/test_volume_plasmon_drude.py +++ b/exspy/tests/components/test_volume_plasmon_drude.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np diff --git a/exspy/tests/drawing/test_plot_model.py b/exspy/tests/drawing/test_plot_model.py index 16c04734e..4b1a8d500 100644 --- a/exspy/tests/drawing/test_plot_model.py +++ b/exspy/tests/drawing/test_plot_model.py @@ -1,20 +1,20 @@ # -*- coding: utf-8 -*- -# Copyright 2007-2024 The HyperSpy developers +# Copyright 2007-2024 The eXSpy developers # -# This file is part of HyperSpy. +# This file is part of eXSpy. # -# HyperSpy is free software: you can redistribute it and/or modify +# eXSpy 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. # -# HyperSpy is distributed in the hope that it will be useful, +# eXSpy 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 HyperSpy. If not, see . +# along with eXSpy. If not, see . import numpy as np import pytest