diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-04-13 23:32:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-13 14:32:23 -0700 |
commit | c846b5149dd541e5323b58a946efa34cb88b7596 (patch) | |
tree | 9ed37b9f0f66ebbed57e5f06fe9408030fd3ca2f /etc | |
parent | 4c1250854a5cc6b153b9c9ecc02b05d70dbdbd7d (diff) | |
download | spack-c846b5149dd541e5323b58a946efa34cb88b7596.tar.gz spack-c846b5149dd541e5323b58a946efa34cb88b7596.tar.bz2 spack-c846b5149dd541e5323b58a946efa34cb88b7596.tar.xz spack-c846b5149dd541e5323b58a946efa34cb88b7596.zip |
Add support for Python 3.10 (#29581)
* Add support for Python 3.10
* Update unit-tests to use 3.10
* Update Getting started section of the docs
* Update bootstrap action
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/bootstrap.yaml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/etc/spack/defaults/bootstrap.yaml b/etc/spack/defaults/bootstrap.yaml index e51e406dff..8c1592055e 100644 --- a/etc/spack/defaults/bootstrap.yaml +++ b/etc/spack/defaults/bootstrap.yaml @@ -9,15 +9,24 @@ bootstrap: # may not be able to bootstrap all of the software that Spack needs, # depending on its type. sources: - - name: 'github-actions' + - name: 'github-actions-v0.2' + type: buildcache + description: | + Buildcache generated from a public workflow using Github Actions. + The sha256 checksum of binaries is checked before installation. + info: + url: https://mirror.spack.io/bootstrap/github-actions/v0.2 + homepage: https://github.com/spack/spack-bootstrap-mirrors + releases: https://github.com/spack/spack-bootstrap-mirrors/releases + - name: 'github-actions-v0.1' type: buildcache description: | Buildcache generated from a public workflow using Github Actions. The sha256 checksum of binaries is checked before installation. info: url: https://mirror.spack.io/bootstrap/github-actions/v0.1 - homepage: https://github.com/alalazo/spack-bootstrap-mirrors - releases: https://github.com/alalazo/spack-bootstrap-mirrors/releases + homepage: https://github.com/spack/spack-bootstrap-mirrors + releases: https://github.com/spack/spack-bootstrap-mirrors/releases # This method is just Spack bootstrapping the software it needs from sources. # It has been added here so that users can selectively disable bootstrapping # from sources by "untrusting" it. @@ -28,5 +37,5 @@ bootstrap: trusted: # By default we trust bootstrapping from sources and from binaries # produced on Github via the workflow - github-actions: true + github-actions-v0.2: true spack-install: true |