Skip to content

Commit

Permalink
extend MS_WINDOWS flag
Browse files Browse the repository at this point in the history
  • Loading branch information
longnguyen2004 authored and lazka committed Jul 19, 2023
1 parent 3970d87 commit eca928e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def msys_system(command):

CROSS_COMPILING = ("_PYTHON_HOST_PLATFORM" in os.environ)
HOST_PLATFORM = get_platform()
MS_WINDOWS = (HOST_PLATFORM == 'win32')
MS_WINDOWS = (HOST_PLATFORM == 'win32' or HOST_PLATFORM == 'mingw')
CYGWIN = (HOST_PLATFORM == 'cygwin')
MACOS = (HOST_PLATFORM == 'darwin')
AIX = (HOST_PLATFORM.startswith('aix'))
Expand Down

0 comments on commit eca928e

Please sign in to comment.