Skip to content
Snippets Groups Projects
Commit 27a2f26f authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'update-specs' into 'master'

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

See merge request !137
parents c418db2a 286cbd14
No related branches found
No related tags found
1 merge request!137[bootstrap] specify conda and conda-build versions as specs
Pipeline #36180 passed
......@@ -538,9 +538,15 @@ if __name__ == "__main__":
cmd = ([conda_bin, conda_cmd]
+ conda_verbosity
+ 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":
cmd += ["--update-specs"]
cmd.insert(2, "--update-specs")
run_cmdline(cmd)
# print conda information for debugging purposes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment