Skip to content

Commit

Permalink
Fix Windows builds bug
Browse files Browse the repository at this point in the history
  • Loading branch information
interlark committed Apr 21, 2024
1 parent 79cca5b commit 183cd36
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import distutils.cmd
import pathlib
import re
import sys

from setuptools import setup

Expand Down Expand Up @@ -106,13 +107,17 @@ def run(self):
'gui': [
'PySimpleGUI==4.59.0',
],
'dev': [
'pyinstaller>=6.6.0',
'pytest>=6.2,<8',
'tox>=3.5,<4',
'pre-commit>=2.6',
'wheel>=0.36.2,<0.38',
],
'dev': (
["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",
"wheel>=0.36.2,<0.38",
]
),
},
classifiers=[
"Topic :: Internet",
Expand Down

0 comments on commit 183cd36

Please sign in to comment.