1010from wolframclient .utils .importutils import module_path
1111
1212
13- @to_tuple
14- def dependencies ():
15- yield ("pytz" , "2018.6" )
16-
17- if not six .JYTHON :
18- yield ("numpy" , not six .PY2 and "1.15.3" or None )
19- yield ("pillow" , "7.1.2" )
20- yield ("requests" , "2.20.0" )
21- yield ("oauthlib" , "2.1.0" )
22- yield ("pyzmq" , "17.1.2" )
23- yield ("pandas" , "1.0.4" )
24- yield ("unittest-xml-reporting" , None )
25- if not six .PY2 :
26- yield ("aiohttp" , "3.6.2" )
13+ # @to_tuple
14+ # def dependencies():
15+ # yield ("pytz", "2018.6")
16+ #
17+ # if not six.JYTHON:
18+ # yield ("numpy", not six.PY2 and "1.15.3" or None)
19+ # yield ("pillow", "7.1.2")
20+ # yield ("requests", "2.20.0")
21+ # yield ("oauthlib", "2.1.0")
22+ # yield ("pyzmq", "17.1.2")
23+ # yield ("pandas", "1.0.4")
24+ # yield ("unittest-xml-reporting", None)
25+ # if not six.PY2:
26+ # yield ("aiohttp", "3.6.2")
2727
2828
2929class Command (SimpleCommand ):
@@ -33,7 +33,7 @@ class Command(SimpleCommand):
3333
3434 modules = ["wolframclient.tests" ]
3535
36- dependencies = dependencies ()
36+ dependencies = ()
3737
3838 def add_arguments (self , parser ):
3939 parser .add_argument (
0 commit comments