diff options
author | Huston Rogers <huston.rogers@gmail.com> | 2024-04-26 19:58:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 18:58:58 -0600 |
commit | 5a3814ff159829c990bc9904a1a47aecc7ca024a (patch) | |
tree | 889b2c0b40201ee66571e3988b4caf70dcb74547 | |
parent | 946c539dbd95cd78ababda66e58a1c3f8953c95a (diff) | |
download | spack-5a3814ff159829c990bc9904a1a47aecc7ca024a.tar.gz spack-5a3814ff159829c990bc9904a1a47aecc7ca024a.tar.bz2 spack-5a3814ff159829c990bc9904a1a47aecc7ca024a.tar.xz spack-5a3814ff159829c990bc9904a1a47aecc7ca024a.zip |
Miniconda3: Added Versions: 24.3.0, 24.1.2, 23.11.0, 23.9.0, 23.5.2, 23.5.1, 23.5.0, 23.3.1, 23.1.0 (#43868)
* Added Versions of miniconda3: 24.3.0, 24.1.2, 23.11.0, 23.9.0, 23.5.2, 23.5.1, 23.5.0, 23.3.1, 23.1.0
* fixed style
---------
Co-authored-by: James H. Rogers <jhrogers@spear.hpc.msstate.edu>
-rw-r--r-- | var/spack/repos/builtin/packages/miniconda3/package.py | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/miniconda3/package.py b/var/spack/repos/builtin/packages/miniconda3/package.py index 7d5596e4d1..c28bf4be9c 100644 --- a/var/spack/repos/builtin/packages/miniconda3/package.py +++ b/var/spack/repos/builtin/packages/miniconda3/package.py @@ -10,6 +10,60 @@ from spack.package import * from spack.util.environment import EnvironmentModifications _versions = { + "24.3.0": { + "Linux-x86_64": ( + "96a44849ff17e960eeb8877ecd9055246381c4d4f2d031263b63fa7e2e930af1", + "https://repo.anaconda.com/miniconda/Miniconda3-py312_24.3.0-0-Linux-x86_64.sh", + ) + }, + "24.1.2": { + "Linux-x86_64": ( + "b978856ec3c826eb495b60e3fffe621f670c101150ebcbdeede4f961f22dc438", + "https://repo.anaconda.com/miniconda/Miniconda3-py312_24.1.2-0-Linux-x86_64.sh", + ) + }, + "23.11.0": { + "Linux-x86_64": ( + "c9ae82568e9665b1105117b4b1e499607d2a920f0aea6f94410e417a0eff1b9c", + "https://repo.anaconda.com/miniconda/Miniconda3-py311_23.11.0-2-Linux-x86_64.sh", + ) + }, + "23.9.0": { + "Linux-x86_64": ( + "43651393236cb8bb4219dcd429b3803a60f318e5507d8d84ca00dafa0c69f1bb", + "https://repo.anaconda.com/miniconda/Miniconda3-py311_23.9.0-0-Linux-x86_64.sh", + ) + }, + "23.5.2": { + "Linux-x86_64": ( + "634d76df5e489c44ade4085552b97bebc786d49245ed1a830022b0b406de5817", + "https://repo.anaconda.com/miniconda/Miniconda3-py311_23.5.2-0-Linux-x86_64.sh", + ) + }, + "23.5.1": { + "Linux-x86_64": ( + "333779c9cae3fe14735949a8dcb9657b9e55ada69e9c60f191c5d582b2deac20", + "https://repo.anaconda.com/miniconda/Miniconda3-py311_23.5.1-0-Linux-x86_64.sh", + ) + }, + "23.5.0": { + "Linux-x86_64": ( + "61a5c087893f6210176045931b89ee6e8760c17abd9c862b2cab4c1b7d00f7c8", + "https://repo.anaconda.com/miniconda/Miniconda3-py311_23.5.0-3-Linux-x86_64.sh", + ) + }, + "23.3.1": { + "Linux-x86_64": ( + "aef279d6baea7f67940f16aad17ebe5f6aac97487c7c03466ff01f4819e5a651", + "https://repo.anaconda.com/miniconda/Miniconda3-py310_23.3.1-0-Linux-x86_64.sh", + ) + }, + "23.1.0": { + "Linux-x86_64": ( + "32d73e1bc33fda089d7cd9ef4c1be542616bd8e437d1f77afeeaf7afdb019787", + "https://repo.anaconda.com/miniconda/Miniconda3-py310_23.1.0-1-Linux-x86_64.sh", + ) + }, "22.11.1": { "Linux-x86_64": ( "00938c3534750a0e4069499baf8f4e6dc1c2e471c86a59caa0dd03f4a9269db6", |