From 9b17c7a9a5bcb4dedb9a626b4718e8ba33d9c281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gl=C3=A4=C3=9Fle?= Date: Fri, 27 Dec 2024 12:24:37 +0100 Subject: [PATCH] Mention why redundant parameters in setup.py are still listed --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 0d5cb3c0..4802050e 100644 --- a/setup.py +++ b/setup.py @@ -135,6 +135,10 @@ def get_extension_args(madxdir, shared, static, **libs): sys.path.append(os.path.dirname(__file__)) fix_distutils_sysconfig_mingw() options, sys.argv[1:] = command_line_options().parse_known_args() + # NOTE: The "metadata" parameters for setup() may appear to be redundant + # but are curently required on setuptools<61.0 and hence for python3.6 + # for which setuptools>=60 is not available. See branch `drop-py36` for + # removal. metadata = exec_file('src/cpymad/__init__.py') setup( name='cpymad',