Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cc402cf

Browse files
committed
remove libpng version probing on windows
1 parent 194af41 commit cc402cf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setupext.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,6 +1003,9 @@ class Png(SetupPackage):
10031003
name = "png"
10041004

10051005
def check(self):
1006+
if sys.platform == 'win32':
1007+
return "Unknown version"
1008+
10061009
status, output = getstatusoutput("libpng-config --version")
10071010
if status == 0:
10081011
version = output

0 commit comments

Comments
 (0)