From 25b554989c787a912777a6d52062be30d344aeb1 Mon Sep 17 00:00:00 2001 From: abhartman Date: Thu, 9 Mar 2023 09:58:49 -0600 Subject: [PATCH] Tried different quotes, deleting trailing comma Based on some stack overflow and random googling, I think maybe the types of quotes used for python_requires could be changed, and also there was a trailing comma that seemed out of place. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2629b47..8fe1990 100644 --- a/setup.py +++ b/setup.py @@ -27,5 +27,5 @@ 'pythoncom', 'numpy', ], - python_requires='>=3.7', - ) \ No newline at end of file + python_requires=">=3.7" + )