Skip to content

Commit

Permalink
Bump conda to 4.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgianaElena committed Sep 18, 2019
1 parent d8c2614 commit 92a7381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/test_conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def prefix():
"""
Provide a temporary directory with a conda environment
"""
miniconda_version = '4.5.4'
miniconda_installer_md5 = "a946ea1d0c4a642ddf0c3a26a18bb16d"
miniconda_version = '4.7.10'
miniconda_installer_md5 = "1c945f2b3335c7b2b15130b1b2dc5cf4"
with tempfile.TemporaryDirectory() as tmpdir:
with conda.download_miniconda_installer(miniconda_version, miniconda_installer_md5) as installer_path:
conda.install_miniconda(installer_path, tmpdir)
Expand Down
6 changes: 3 additions & 3 deletions tljh/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ def ensure_user_environment(user_requirements_txt_file):
"""
logger.info("Setting up user environment...")
if "python3.7" in sys.executable:
conda_version = '4.7.5'
miniconda_version = '4.7.5'
miniconda_installer_md5 = "fc3595e7a66cf159a9d288a212834127"
conda_version = '4.7.10'
miniconda_version = '4.7.10'
miniconda_installer_md5 = "1c945f2b3335c7b2b15130b1b2dc5cf4"
else:
conda_version = '4.5.8'
miniconda_version = '4.5.4'
Expand Down

0 comments on commit 92a7381

Please sign in to comment.