Skip to content

Commit ca208ca

Browse files
committed
removing version constraints
1 parent 509855c commit ca208ca

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

wolframclient/cli/commands/setup.py

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,22 @@
77

88
@to_tuple
99
def dependencies():
10-
yield ("pytz", "2018.6")
10+
yield "pytz"
11+
1112
if not six.JYTHON:
12-
yield ("numpy", not six.PY2 and "1.15.3" or None)
13-
yield ("pillow", "7.1.2")
14-
yield ("requests", "2.20.0")
15-
yield ("oauthlib", "2.1.0")
16-
yield ("pyzmq", "17.1.2")
17-
yield ("pandas", "1.0.4")
18-
yield ("unittest-xml-reporting", None)
13+
yield "aiohttp"
14+
yield "numpy"
15+
yield "oauthlib"
16+
yield "pandas"
17+
yield "pandas"
18+
yield "pillow"
19+
yield "pyzmq"
20+
yield "requests"
21+
yield "unittest-xml-reporting"
22+
yield 'certifi>=2017.4.17'
23+
1924
if not six.PY2:
20-
yield ("aiohttp", "3.6.2")
25+
yield "aiohttp"
2126

2227

2328
class Command(SimpleCommand):

0 commit comments

Comments
 (0)