From c0cd45fb283696c436659ae5a798eef1e1d8cc52 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Fri, 19 Jul 2024 11:34:22 +0200 Subject: [PATCH] Allow building rpms with python3.6 (#862) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f0563cd1..245027bb 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ 'Programming Language :: Python :: 3.10', # ubuntu2204 'Programming Language :: Python :: 3.11', # MacOS 'Programming Language :: Python :: 3.12', # MacOS - ], + ] + ['packaging<=23'] if sys.version_info <(3, 7) else [], # What does your project relate to? keywords='HEP ALICE',