Skip to content

Commit

Permalink
--fix miniconda versions (#2334)
Browse files Browse the repository at this point in the history
latest miniconda is using python 3.12 which is undesirable, and causes osx builds to break due to the removal of deprecated functionality (pkgutil.ImpImporter class was deprecated in python 3.3 and removed in 3.12.)
  • Loading branch information
jturner65 authored Mar 5, 2024
1 parent ff7f0be commit 498cae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ commands:
command: |
if [ ! -d ~/miniconda ]
then
curl -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
curl -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Miniconda3-py310_24.1.2-0-Linux-x86_64.sh
chmod +x ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
rm ~/miniconda.sh
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
- run:
name: Conda Install OSX
command: |
curl -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
curl -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Miniconda3-py310_24.1.2-0-MacOSX-x86_64.sh
chmod +x ~/miniconda.sh
~/miniconda.sh -b -p $HOME/miniconda
rm ~/miniconda.sh
Expand Down

0 comments on commit 498cae1

Please sign in to comment.