I noticed that there is an issue with the syntax in the build_submodules.py file. The print statement is missing parentheses, causing a syntax error when running the script.
Steps to Reproduce Bug
Current Code
print cmd
print "cannot create directory {}".format(dir)
print 'Cannot find a suitable version of Visual Studio (require 10.0-15.0 or 2017 or 2019)'
print "submodules/z3 not found. try 'git submodule update; git submodule update'"
Expected Code:
print(cmd)
print ("cannot create directory {}".format(dir))
print ('Cannot find a suitable version of Visual Studio (require 10.0-15.0 or 2017 or 2019)')
print ("submodules/z3 not found. try 'git submodule update; git submodule update'")
Bug Explanation
I noticed that there is an issue with the syntax in the build_submodules.py file. The print statement is
missing parentheses
, causing a syntax error when running the script.Steps to Reproduce Bug
Current Code
Expected Code:
Environment
windows 10
Ivy Version
v1.1.9
Backend
Device
No response