From 2aed946843ad7628fd413155c6425a0d109b1a61 Mon Sep 17 00:00:00 2001 From: restlessronin <88921269+restlessronin@users.noreply.github.com> Date: Fri, 19 Aug 2022 15:19:26 +0530 Subject: [PATCH 1/6] update to 2021.11 --- README.md | 2 +- condacolab.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f800ef..b4e4ebd 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ condacolab.check() The default `condacolab.install()` provides Mambaforge, but there are other `conda` distributions to choose from: -- `install_anaconda()`: This will install the Anaconda 2020.02 distribution, the last version that was built for Python 3.7. This contains [plenty of data science packages](https://docs.anaconda.com/anaconda/packages/old-pkg-lists/2020.02/py3.7_linux-64/), but they might be outdated by now. +- `install_anaconda()`: This will install the Anaconda 2021.11 distribution, the last version that was built for Python 3.7. This contains [plenty of data science packages](https://docs.anaconda.com/anaconda/packages/old-pkg-lists/2021.11/py3.7_linux-64/), but they might be outdated by now. - `install_miniconda()`: This will install the Miniconda 4.9.2 distribution, using a version built for Python 3.7. Unlike Anaconda, this distribution only contains `python` and `conda`. - `install_miniforge()`: Like Miniconda, but built off `conda-forge` packages. The Miniforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. - `install_mambaforge()`: Like Miniforge, but with `mamba` included. The Mambaforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. diff --git a/condacolab.py b/condacolab.py index ec6edcd..662234d 100644 --- a/condacolab.py +++ b/condacolab.py @@ -274,7 +274,7 @@ def install_anaconda( Change to False to ignore checks and always attempt to run the installation. """ - installer_url = r"https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh" + installer_url = r"https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-x86_64.sh" install_from_url(installer_url, prefix=prefix, env=env, run_checks=run_checks) From 3bbae2a3e484d175764d333ced1a4db834dc7e1e Mon Sep 17 00:00:00 2001 From: restlessronin <88921269+restlessronin@users.noreply.github.com> Date: Thu, 25 Aug 2022 14:29:34 +0530 Subject: [PATCH 2/6] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jaime Rodríguez-Guerra --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b4e4ebd..e628774 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ condacolab.check() The default `condacolab.install()` provides Mambaforge, but there are other `conda` distributions to choose from: - `install_anaconda()`: This will install the Anaconda 2021.11 distribution, the last version that was built for Python 3.7. This contains [plenty of data science packages](https://docs.anaconda.com/anaconda/packages/old-pkg-lists/2021.11/py3.7_linux-64/), but they might be outdated by now. -- `install_miniconda()`: This will install the Miniconda 4.9.2 distribution, using a version built for Python 3.7. Unlike Anaconda, this distribution only contains `python` and `conda`. +- `install_miniconda()`: This will install the Miniconda 4.12.0 distribution, using a version built for Python 3.7. Unlike Anaconda, this distribution only contains `python` and `conda`. - `install_miniforge()`: Like Miniconda, but built off `conda-forge` packages. The Miniforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. - `install_mambaforge()`: Like Miniforge, but with `mamba` included. The Mambaforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. From 81c17ce3ce5645b78e9fc120cb3a3bb00f048765 Mon Sep 17 00:00:00 2001 From: restlessronin <88921269+restlessronin@users.noreply.github.com> Date: Thu, 25 Aug 2022 14:33:54 +0530 Subject: [PATCH 3/6] update miniconda url --- condacolab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/condacolab.py b/condacolab.py index 662234d..fd9cd21 100644 --- a/condacolab.py +++ b/condacolab.py @@ -244,7 +244,7 @@ def install_miniconda( Change to False to ignore checks and always attempt to run the installation. """ - installer_url = r"https://repo.anaconda.com/miniconda/Miniconda3-py37_4.9.2-Linux-x86_64.sh" + installer_url = r"https://repo.anaconda.com/miniconda/Miniconda3-py37_4.12.0-Linux-x86_64.sh" install_from_url(installer_url, prefix=prefix, env=env, run_checks=run_checks) From 5a04e7f51c6c78aebe84699c8ab6d32851e04be0 Mon Sep 17 00:00:00 2001 From: restlessronin <88921269+restlessronin@users.noreply.github.com> Date: Thu, 25 Aug 2022 14:42:24 +0530 Subject: [PATCH 4/6] update to 22.05 --- README.md | 2 +- condacolab.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e628774..37f537d 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ condacolab.check() The default `condacolab.install()` provides Mambaforge, but there are other `conda` distributions to choose from: -- `install_anaconda()`: This will install the Anaconda 2021.11 distribution, the last version that was built for Python 3.7. This contains [plenty of data science packages](https://docs.anaconda.com/anaconda/packages/old-pkg-lists/2021.11/py3.7_linux-64/), but they might be outdated by now. +- `install_anaconda()`: This will install the Anaconda 2022.05 distribution, the most recent version built for Python 3.7 at the time of update. This contains [plenty of data science packages (link to current version docs))](https://docs.anaconda.com/anaconda/packages/py3.7_linux-64/). - `install_miniconda()`: This will install the Miniconda 4.12.0 distribution, using a version built for Python 3.7. Unlike Anaconda, this distribution only contains `python` and `conda`. - `install_miniforge()`: Like Miniconda, but built off `conda-forge` packages. The Miniforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. - `install_mambaforge()`: Like Miniforge, but with `mamba` included. The Mambaforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. diff --git a/condacolab.py b/condacolab.py index fd9cd21..afb05d4 100644 --- a/condacolab.py +++ b/condacolab.py @@ -252,8 +252,8 @@ def install_anaconda( prefix: os.PathLike = PREFIX, env: Dict[AnyStr, AnyStr] = None, run_checks: bool = True ): """ - Install Anaconda 2020.02, the last official version built - for Python 3.7. + Install Anaconda 2022.05, the latest version built + for Python 3.7 at the time of update. Parameters ---------- @@ -274,7 +274,7 @@ def install_anaconda( Change to False to ignore checks and always attempt to run the installation. """ - installer_url = r"https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-x86_64.sh" + installer_url = r"https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh" install_from_url(installer_url, prefix=prefix, env=env, run_checks=run_checks) From cebbd6327da73aeed88a6ee6e10991efb7a57a63 Mon Sep 17 00:00:00 2001 From: restlessronin <88921269+restlessronin@users.noreply.github.com> Date: Thu, 25 Aug 2022 14:43:43 +0530 Subject: [PATCH 5/6] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37f537d..b7b57fe 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ condacolab.check() The default `condacolab.install()` provides Mambaforge, but there are other `conda` distributions to choose from: -- `install_anaconda()`: This will install the Anaconda 2022.05 distribution, the most recent version built for Python 3.7 at the time of update. This contains [plenty of data science packages (link to current version docs))](https://docs.anaconda.com/anaconda/packages/py3.7_linux-64/). +- `install_anaconda()`: This will install the Anaconda 2022.05 distribution, the most recent version built for Python 3.7 at the time of update. This contains [plenty of data science packages (link to current version docs)](https://docs.anaconda.com/anaconda/packages/py3.7_linux-64/). - `install_miniconda()`: This will install the Miniconda 4.12.0 distribution, using a version built for Python 3.7. Unlike Anaconda, this distribution only contains `python` and `conda`. - `install_miniforge()`: Like Miniconda, but built off `conda-forge` packages. The Miniforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. - `install_mambaforge()`: Like Miniforge, but with `mamba` included. The Mambaforge distribution is officially provided by [conda-forge](https://github.com/conda-forge/miniforge) but I [forked and patched it](https://github.com/jaimergp/miniforge) so it's built for Python 3.7. From 3c93ecb58996a95c437f5487b6bf3db538c3367b Mon Sep 17 00:00:00 2001 From: restlessronin <88921269+restlessronin@users.noreply.github.com> Date: Thu, 25 Aug 2022 14:59:52 +0530 Subject: [PATCH 6/6] made comment consistent --- condacolab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/condacolab.py b/condacolab.py index afb05d4..b097a6e 100644 --- a/condacolab.py +++ b/condacolab.py @@ -223,7 +223,7 @@ def install_miniconda( prefix: os.PathLike = PREFIX, env: Dict[AnyStr, AnyStr] = None, run_checks: bool = True ): """ - Install Miniconda 4.9.2 for Python 3.7. + Install Miniconda 4.12.0 for Python 3.7. Parameters ----------