Skip to content

Commit

Permalink
Use temporary conda channel while Gemini's is still down.
Browse files Browse the repository at this point in the history
Don't do conda update until the channels are correct.
  • Loading branch information
jehturner committed Nov 24, 2023
1 parent 5074ea6 commit e989fe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .jenkins/scripts/download_and_install_anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ fi
echo ${PATH}
which conda
conda clean -i -t -y # in case of corrupt package cache from previous run
conda update --quiet conda
# These 2 channels need removing if testing old branches has reinstated them:
conda config --remove channels http://ssb.stsci.edu/astroconda || :
conda config --remove channels http://astroconda.gemini.edu/public/noarch || :
conda config --remove channels http://astroconda.gemini.edu/public || :
conda config --add channels conda-forge
conda config --add channels http://astroconda.gemini.edu/public
conda config --add channels http://jastro.org/astroconda/public
conda config --set channel_priority true
conda config --set restore_free_channel false
conda update --quiet conda
conda env list
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ conda_deps =
specutils>=1.1
sqlalchemy>=1.3,<2.0.0a0 # new v2 API breaks calmgr (which is a wheel)
conda_channels =
http://astroconda.gemini.edu/public
http://jastro.org/astroconda/public
conda-forge
conda_create_args =
--override-channels
Expand Down

0 comments on commit e989fe8

Please sign in to comment.