From b9c86ae9ecd8ded1add012745c9869da3ec8289e Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 14 Nov 2019 17:03:26 +0800 Subject: [PATCH] install-with-conda: use stable channel --- install-with-conda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-with-conda.py b/install-with-conda.py index fb09ad3ab..f22c07f96 100644 --- a/install-with-conda.py +++ b/install-with-conda.py @@ -34,7 +34,7 @@ def run(command): if ADD_CHANNELS: run("conda config --prepend channels m-labs") - run("conda config --prepend channels https://conda.m-labs.hk/artiq-beta") + run("conda config --prepend channels https://conda.m-labs.hk/artiq") run("conda config --append channels conda-forge") # Creating the environment first with python 3.5 hits fewer bugs in conda's broken dependency solver. @@ -42,5 +42,5 @@ run("conda create -y -n {CONDA_ENV_NAME} python=3.5".format(CONDA_ENV_NAME=CONDA for package in CONDA_PACKAGES: # Do not activate the environment yet - otherwise "conda install" may not find the SSL module anymore on Windows. # Installing into the environment from the outside works around this conda bug. - run("conda install -y -n {CONDA_ENV_NAME} -c https://conda.m-labs.hk/artiq-beta {package}" + run("conda install -y -n {CONDA_ENV_NAME} -c https://conda.m-labs.hk/artiq {package}" .format(CONDA_ENV_NAME=CONDA_ENV_NAME, package=package))