We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 509855c commit ca208caCopy full SHA for ca208ca
1 file changed
wolframclient/cli/commands/setup.py
@@ -7,17 +7,22 @@
7
8
@to_tuple
9
def dependencies():
10
- yield ("pytz", "2018.6")
+ yield "pytz"
11
+
12
if not six.JYTHON:
- 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)
+ yield "aiohttp"
+ yield "numpy"
+ yield "oauthlib"
+ yield "pandas"
+ yield "pillow"
19
+ yield "pyzmq"
20
+ yield "requests"
21
+ yield "unittest-xml-reporting"
22
+ yield 'certifi>=2017.4.17'
23
24
if not six.PY2:
- yield ("aiohttp", "3.6.2")
25
26
27
28
class Command(SimpleCommand):
0 commit comments