From e89956922739e565493eb068f91e4953d45a43e4 Mon Sep 17 00:00:00 2001 From: Eduardo Rodrigues Date: Tue, 7 Jan 2025 17:56:44 +0100 Subject: [PATCH] Update copyright to 2025 (#649) --- .gitignore | 2 ++ LICENSE | 2 +- admin/dump_pdgid_to_corsika7.py | 2 +- admin/dump_pdgid_to_lhcb.py | 2 +- src/particle/__init__.py | 2 +- src/particle/__main__.py | 2 +- src/particle/_compat/typing.py | 2 +- src/particle/converters/__init__.py | 2 +- src/particle/converters/bimap.py | 2 +- src/particle/converters/corsika.py | 2 +- src/particle/converters/evtgen.py | 2 +- src/particle/converters/geant.py | 2 +- src/particle/converters/pythia.py | 2 +- src/particle/corsika/__init__.py | 2 +- src/particle/corsika/corsika7id.py | 2 +- src/particle/data/__init__.py | 2 +- src/particle/exceptions.py | 2 +- src/particle/geant/__init__.py | 2 +- src/particle/geant/geant3id.py | 2 +- src/particle/lhcb/__init__.py | 2 +- src/particle/lhcb/converters.py | 2 +- src/particle/lhcb/data/__init__.py | 2 +- src/particle/lhcb/functions.py | 2 +- src/particle/particle/__init__.py | 2 +- src/particle/particle/convert.py | 2 +- src/particle/particle/enums.py | 2 +- src/particle/particle/kinematics.py | 2 +- src/particle/particle/literals.py | 2 +- src/particle/particle/particle.py | 2 +- src/particle/particle/regex.py | 2 +- src/particle/particle/utilities.py | 2 +- src/particle/pdgid/__init__.py | 2 +- src/particle/pdgid/functions.py | 2 +- src/particle/pdgid/literals.py | 2 +- src/particle/pdgid/pdgid.py | 2 +- src/particle/pythia/__init__.py | 2 +- src/particle/pythia/pythiaid.py | 2 +- src/particle/shared_literals.py | 2 +- src/particle/typing.py | 2 +- tests/__init__.py | 2 +- tests/conftest.py | 2 +- tests/converters/__init__.py | 2 +- tests/converters/test_corsika.py | 2 +- tests/converters/test_maps.py | 2 +- tests/corsika/__init__.py | 2 +- tests/geant/__init__.py | 2 +- tests/geant/test_geant3id.py | 2 +- tests/lhcb/test_lhcb_name.py | 2 +- tests/particle/__init__.py | 2 +- tests/particle/test_convert.py | 2 +- tests/particle/test_decfilenames.py | 2 +- tests/particle/test_enums.py | 2 +- tests/particle/test_generation.py | 2 +- tests/particle/test_kinematics.py | 2 +- tests/particle/test_literals.py | 2 +- tests/particle/test_particle.py | 2 +- tests/particle/test_utilities.py | 2 +- tests/pdgid/__init__.py | 2 +- tests/pdgid/test_functions.py | 2 +- tests/pdgid/test_literals.py | 2 +- tests/pdgid/test_pdgid.py | 2 +- tests/pythia/__init__.py | 2 +- tests/pythia/test_pythiaid.py | 2 +- tests/test_package.py | 2 +- 64 files changed, 65 insertions(+), 63 deletions(-) diff --git a/.gitignore b/.gitignore index 6960d4c9..c6d25dee 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,5 @@ docs/_build *.pyz *.pixi + +*/__pycache__/* diff --git a/LICENSE b/LICENSE index ac3f6918..63ff6730 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/admin/dump_pdgid_to_corsika7.py b/admin/dump_pdgid_to_corsika7.py index 26ed9e91..c248c4f5 100755 --- a/admin/dump_pdgid_to_corsika7.py +++ b/admin/dump_pdgid_to_corsika7.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/admin/dump_pdgid_to_lhcb.py b/admin/dump_pdgid_to_lhcb.py index b45817aa..4cf0eb03 100755 --- a/admin/dump_pdgid_to_lhcb.py +++ b/admin/dump_pdgid_to_lhcb.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/__init__.py b/src/particle/__init__.py index 37fdafbb..6f20cd2c 100644 --- a/src/particle/__init__.py +++ b/src/particle/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/__main__.py b/src/particle/__main__.py index 3dff5cc8..67ecee7b 100644 --- a/src/particle/__main__.py +++ b/src/particle/__main__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/_compat/typing.py b/src/particle/_compat/typing.py index 0482e636..7b3af20f 100644 --- a/src/particle/_compat/typing.py +++ b/src/particle/_compat/typing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/converters/__init__.py b/src/particle/converters/__init__.py index 23128896..9b0becdf 100644 --- a/src/particle/converters/__init__.py +++ b/src/particle/converters/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/converters/bimap.py b/src/particle/converters/bimap.py index 1c7d30ed..3c81d134 100644 --- a/src/particle/converters/bimap.py +++ b/src/particle/converters/bimap.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/converters/corsika.py b/src/particle/converters/corsika.py index 4437770c..adc1a94e 100644 --- a/src/particle/converters/corsika.py +++ b/src/particle/converters/corsika.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/converters/evtgen.py b/src/particle/converters/evtgen.py index 5bb4dad6..3d0cf151 100644 --- a/src/particle/converters/evtgen.py +++ b/src/particle/converters/evtgen.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/converters/geant.py b/src/particle/converters/geant.py index 31dcc717..d71314ac 100644 --- a/src/particle/converters/geant.py +++ b/src/particle/converters/geant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/converters/pythia.py b/src/particle/converters/pythia.py index 99481578..5b6a337c 100644 --- a/src/particle/converters/pythia.py +++ b/src/particle/converters/pythia.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/corsika/__init__.py b/src/particle/corsika/__init__.py index f779bb4a..81438556 100644 --- a/src/particle/corsika/__init__.py +++ b/src/particle/corsika/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/corsika/corsika7id.py b/src/particle/corsika/corsika7id.py index c3af5074..257f399e 100644 --- a/src/particle/corsika/corsika7id.py +++ b/src/particle/corsika/corsika7id.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/data/__init__.py b/src/particle/data/__init__.py index ee1ad522..e01a3fb4 100644 --- a/src/particle/data/__init__.py +++ b/src/particle/data/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/exceptions.py b/src/particle/exceptions.py index d4126a11..229e1409 100644 --- a/src/particle/exceptions.py +++ b/src/particle/exceptions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/geant/__init__.py b/src/particle/geant/__init__.py index 4e1625ee..8c3b10c8 100644 --- a/src/particle/geant/__init__.py +++ b/src/particle/geant/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/geant/geant3id.py b/src/particle/geant/geant3id.py index 505f613e..293d1bd9 100644 --- a/src/particle/geant/geant3id.py +++ b/src/particle/geant/geant3id.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/lhcb/__init__.py b/src/particle/lhcb/__init__.py index b904820c..ceacbf42 100644 --- a/src/particle/lhcb/__init__.py +++ b/src/particle/lhcb/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/lhcb/converters.py b/src/particle/lhcb/converters.py index eac451be..6e1b708e 100644 --- a/src/particle/lhcb/converters.py +++ b/src/particle/lhcb/converters.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/lhcb/data/__init__.py b/src/particle/lhcb/data/__init__.py index 8662120e..c042c73a 100644 --- a/src/particle/lhcb/data/__init__.py +++ b/src/particle/lhcb/data/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/lhcb/functions.py b/src/particle/lhcb/functions.py index f3b6fe5f..917e3027 100644 --- a/src/particle/lhcb/functions.py +++ b/src/particle/lhcb/functions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/__init__.py b/src/particle/particle/__init__.py index 57991a58..6555bb53 100644 --- a/src/particle/particle/__init__.py +++ b/src/particle/particle/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/convert.py b/src/particle/particle/convert.py index 2064d9b8..29eaf187 100644 --- a/src/particle/particle/convert.py +++ b/src/particle/particle/convert.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/enums.py b/src/particle/particle/enums.py index 41993406..e509b392 100644 --- a/src/particle/particle/enums.py +++ b/src/particle/particle/enums.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/kinematics.py b/src/particle/particle/kinematics.py index c1a15c3a..d12dd42b 100644 --- a/src/particle/particle/kinematics.py +++ b/src/particle/particle/kinematics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/literals.py b/src/particle/particle/literals.py index b11fefd5..607378f1 100644 --- a/src/particle/particle/literals.py +++ b/src/particle/particle/literals.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/particle.py b/src/particle/particle/particle.py index 78386e1e..ba9f9b4e 100644 --- a/src/particle/particle/particle.py +++ b/src/particle/particle/particle.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/regex.py b/src/particle/particle/regex.py index f0516e8a..6e0f2506 100644 --- a/src/particle/particle/regex.py +++ b/src/particle/particle/regex.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/particle/utilities.py b/src/particle/particle/utilities.py index a1daa8bd..c6e77bcf 100644 --- a/src/particle/particle/utilities.py +++ b/src/particle/particle/utilities.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/pdgid/__init__.py b/src/particle/pdgid/__init__.py index ca2400cf..837a2bff 100644 --- a/src/particle/pdgid/__init__.py +++ b/src/particle/pdgid/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/pdgid/functions.py b/src/particle/pdgid/functions.py index 8ebe603c..a501df47 100644 --- a/src/particle/pdgid/functions.py +++ b/src/particle/pdgid/functions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/pdgid/literals.py b/src/particle/pdgid/literals.py index b233d2f7..b3146502 100644 --- a/src/particle/pdgid/literals.py +++ b/src/particle/pdgid/literals.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/pdgid/pdgid.py b/src/particle/pdgid/pdgid.py index a0cc4bf6..d86e7411 100644 --- a/src/particle/pdgid/pdgid.py +++ b/src/particle/pdgid/pdgid.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/pythia/__init__.py b/src/particle/pythia/__init__.py index 6d50eefd..66020f9d 100644 --- a/src/particle/pythia/__init__.py +++ b/src/particle/pythia/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/pythia/pythiaid.py b/src/particle/pythia/pythiaid.py index 8af9fdf4..bac5ac79 100644 --- a/src/particle/pythia/pythiaid.py +++ b/src/particle/pythia/pythiaid.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/shared_literals.py b/src/particle/shared_literals.py index 39309d9f..ac7b95c7 100644 --- a/src/particle/shared_literals.py +++ b/src/particle/shared_literals.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/src/particle/typing.py b/src/particle/typing.py index e6fa39a1..fbcf01f8 100644 --- a/src/particle/typing.py +++ b/src/particle/typing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/__init__.py b/tests/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/conftest.py b/tests/conftest.py index b89290a9..729cab76 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/converters/__init__.py b/tests/converters/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/converters/__init__.py +++ b/tests/converters/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/converters/test_corsika.py b/tests/converters/test_corsika.py index 04603fd8..1bff713e 100644 --- a/tests/converters/test_corsika.py +++ b/tests/converters/test_corsika.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/converters/test_maps.py b/tests/converters/test_maps.py index aa3eeabb..c40aad76 100644 --- a/tests/converters/test_maps.py +++ b/tests/converters/test_maps.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/corsika/__init__.py b/tests/corsika/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/corsika/__init__.py +++ b/tests/corsika/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/geant/__init__.py b/tests/geant/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/geant/__init__.py +++ b/tests/geant/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/geant/test_geant3id.py b/tests/geant/test_geant3id.py index ef4e92b8..1b252ca1 100644 --- a/tests/geant/test_geant3id.py +++ b/tests/geant/test_geant3id.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/lhcb/test_lhcb_name.py b/tests/lhcb/test_lhcb_name.py index 1ed9b478..9a91118a 100644 --- a/tests/lhcb/test_lhcb_name.py +++ b/tests/lhcb/test_lhcb_name.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/__init__.py b/tests/particle/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/particle/__init__.py +++ b/tests/particle/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_convert.py b/tests/particle/test_convert.py index e0f697f2..1095ba63 100644 --- a/tests/particle/test_convert.py +++ b/tests/particle/test_convert.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_decfilenames.py b/tests/particle/test_decfilenames.py index 21f1f117..8872293e 100644 --- a/tests/particle/test_decfilenames.py +++ b/tests/particle/test_decfilenames.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_enums.py b/tests/particle/test_enums.py index 3bbf1f10..977287a1 100644 --- a/tests/particle/test_enums.py +++ b/tests/particle/test_enums.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_generation.py b/tests/particle/test_generation.py index 6407858e..3b68ae4b 100644 --- a/tests/particle/test_generation.py +++ b/tests/particle/test_generation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_kinematics.py b/tests/particle/test_kinematics.py index 7ec12862..b99ffcd1 100644 --- a/tests/particle/test_kinematics.py +++ b/tests/particle/test_kinematics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_literals.py b/tests/particle/test_literals.py index 8df17d39..69f76f88 100644 --- a/tests/particle/test_literals.py +++ b/tests/particle/test_literals.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_particle.py b/tests/particle/test_particle.py index cafb3f43..8f118395 100644 --- a/tests/particle/test_particle.py +++ b/tests/particle/test_particle.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/particle/test_utilities.py b/tests/particle/test_utilities.py index 79dc55d8..ea2035fa 100644 --- a/tests/particle/test_utilities.py +++ b/tests/particle/test_utilities.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/pdgid/__init__.py b/tests/pdgid/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/pdgid/__init__.py +++ b/tests/pdgid/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/pdgid/test_functions.py b/tests/pdgid/test_functions.py index d239f9d2..e96d3c44 100644 --- a/tests/pdgid/test_functions.py +++ b/tests/pdgid/test_functions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/pdgid/test_literals.py b/tests/pdgid/test_literals.py index c6740849..ddfd8502 100644 --- a/tests/pdgid/test_literals.py +++ b/tests/pdgid/test_literals.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/pdgid/test_pdgid.py b/tests/pdgid/test_pdgid.py index 7cd0050d..22c34819 100644 --- a/tests/pdgid/test_pdgid.py +++ b/tests/pdgid/test_pdgid.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/pythia/__init__.py b/tests/pythia/__init__.py index 35ab8249..ce01e93b 100644 --- a/tests/pythia/__init__.py +++ b/tests/pythia/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/pythia/test_pythiaid.py b/tests/pythia/test_pythiaid.py index 7c3dcd68..190d87ce 100644 --- a/tests/pythia/test_pythiaid.py +++ b/tests/pythia/test_pythiaid.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details. diff --git a/tests/test_package.py b/tests/test_package.py index 06caf7b1..ca6de732 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2024, Eduardo Rodrigues and Henry Schreiner. +# Copyright (c) 2018-2025, Eduardo Rodrigues and Henry Schreiner. # # Distributed under the 3-clause BSD license, see accompanying file LICENSE # or https://github.com/scikit-hep/particle for details.