We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2566163 commit 3e819f7Copy full SHA for 3e819f7
1 file changed
wolframclient/cli/commands/setup.py
@@ -9,7 +9,7 @@
9
def dependencies():
10
yield "pytz"
11
12
- if not six.JYTHON:
+ if not six.PY2:
13
yield "aiohttp"
14
yield "numpy"
15
yield "oauthlib"
@@ -20,10 +20,6 @@ def dependencies():
20
yield "unittest-xml-reporting"
21
yield 'certifi>=2017.4.17'
22
23
- if not six.PY2:
24
- yield "aiohttp"
25
-
26
27
class Command(SimpleCommand):
28
""" Run test suites from the tests modules.
29
A list of patterns can be provided to specify the tests to run.
0 commit comments