Skip to content
Snippets Groups Projects
Commit 66bd005d authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[conda][bootstrap] Add conda-verify to list of packages to install

parent 3899cb1f
No related branches found
No related tags found
1 merge request!13Conda verify
Pipeline #26847 passed
......@@ -384,6 +384,7 @@ if __name__ == '__main__':
conda_version = '4'
conda_build_version = '3.16'
conda_verify_version = '3'
conda_verbosity = []
#if args.verbose >= 2:
......@@ -398,6 +399,7 @@ if __name__ == '__main__':
'python',
'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
])
......@@ -408,6 +410,7 @@ if __name__ == '__main__':
'python',
'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
])
conda_bld_path = os.path.join(args.conda_root, 'conda-bld')
......
......@@ -35,6 +35,7 @@ requirements:
- click-plugins
- conda=4
- conda-build=3.16
- conda-verify=3
- certifi
- pytz
- python-dateutil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment