Skip to content

Commit

Permalink
Add missing requirements parentesis
Browse files Browse the repository at this point in the history
  • Loading branch information
interlark committed Apr 21, 2024
1 parent 183cd36 commit 181c042
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 181c042

Please sign in to comment.