Skip to content
Snippets Groups Projects

[bootstrap] specify conda and conda-build versions as specs

Merged Amir MOHAMMADI requested to merge update-specs into master
1 file
+ 8
2
Compare changes
  • Side-by-side
  • Inline
+ 8
2
@@ -538,9 +538,15 @@ if __name__ == "__main__":
@@ -538,9 +538,15 @@ if __name__ == "__main__":
cmd = ([conda_bin, conda_cmd]
cmd = ([conda_bin, conda_cmd]
+ conda_verbosity
+ conda_verbosity
+ channels
+ channels
+ ["-n", args.envname, "bob.devtools"])
+ ["-n", args.envname,
 
"bob.devtools",
 
"conda=%s" % conda_version,
 
"conda-build=%s" % conda_build_version,
 
"conda-verify=%s" % conda_verify_version,
 
"twine", # required for checking readme of python (zip) distro
 
])
if conda_cmd == "install":
if conda_cmd == "install":
cmd += ["--update-specs"]
cmd.insert(2, "--update-specs")
run_cmdline(cmd)
run_cmdline(cmd)
# print conda information for debugging purposes
# print conda information for debugging purposes
Loading