From 181c0422e17386a4936d6774d4ca98a7df6f99fc Mon Sep 17 00:00:00 2001 From: Andy Trofimov Date: Sun, 21 Apr 2024 16:00:00 +0500 Subject: [PATCH] Add missing requirements parentesis --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 043fa55..ba5ce0d 100644 --- a/setup.py +++ b/setup.py @@ -108,10 +108,11 @@ def run(self): 'PySimpleGUI==4.59.0', ], 'dev': ( - ["pyinstaller>=5.0,<5.7.0"] - if sys.platform.startswith("win") - else ["pyinstaller>=6.6.0"] - + [ + ( + ["pyinstaller>=5.0,<5.7.0"] + if sys.platform.startswith("win") + else ["pyinstaller>=6.6.0"] + ) + [ "pytest>=6.2,<8", "tox>=3.5,<4", "pre-commit>=2.6",