8000 Fixed commit which made the script think that windows was mac. · Libardo1/stanford-corenlp-python@c68fd4f · GitHub
[go: up one dir, main page]

Skip to content

Commit c68fd4f

Browse files
committed
Fixed commit which made the script think that windows was mac.
1 parent b73ddaf commit c68fd4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
AUTHOR = "Hiroyoshi Komatsu, Dustin Smith, Aditi Muralidharan"
88
AUTHOR_EMAIL = "aditi.shrikumar@gmail.com"
99
URL = "https://github.com/Wordseer/stanford-corenlp-python"
10-
VERSION = "3.3.7-0"
10+
VERSION = "3.3.8-0"
1111
INSTALLATION_REQS = ["unidecode >= 0.04.12", "xmltodict >= 0.4.6"]
1212

1313
PEXPECT = "pexpect >= 2.4"
1414
WINPEXPECT = "winpexpect >= 1.5"
1515

16-
if "win" in sys.platform:
16+
if "win32" in sys.platform or "cygwin" in sys.platform:
1717
INSTALLATION_REQS.append(WINPEXPECT)
1818
else:
1919
INSTALLATION_REQS.append(PEXPECT)

0 commit comments

Comments
 (0)
0