8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73ddaf commit c68fd4fCopy full SHA for c68fd4f
setup.py
@@ -7,13 +7,13 @@
7
AUTHOR = "Hiroyoshi Komatsu, Dustin Smith, Aditi Muralidharan"
8
AUTHOR_EMAIL = "aditi.shrikumar@gmail.com"
9
URL = "https://github.com/Wordseer/stanford-corenlp-python"
10
-VERSION = "3.3.7-0"
+VERSION = "3.3.8-0"
11
INSTALLATION_REQS = ["unidecode >= 0.04.12", "xmltodict >= 0.4.6"]
12
13
PEXPECT = "pexpect >= 2.4"
14
WINPEXPECT = "winpexpect >= 1.5"
15
16
-if "win" in sys.platform:
+if "win32" in sys.platform or "cygwin" in sys.platform:
17
INSTALLATION_REQS.append(WINPEXPECT)
18
else:
19
INSTALLATION_REQS.append(PEXPECT)
0 commit comments