remove another Python 3.7 requirement & preference, since it was deprecated (#38710)
This commit is contained in:
parent
a3d11a7973
commit
d35149d174
@ -1,23 +1,19 @@
|
|||||||
packages:
|
packages: {}
|
||||||
#all:
|
|
||||||
# CI should never build develop/main/master versions of
|
|
||||||
# packages.
|
|
||||||
# Current issues:
|
|
||||||
# - e4s/dav
|
|
||||||
# - hdf5-vol-async => argobot@main
|
|
||||||
# - aws-ahug-*
|
|
||||||
# - snap
|
|
||||||
# - tycho2
|
|
||||||
# - amg2013
|
|
||||||
# - cosp2
|
|
||||||
# - snbone
|
|
||||||
# - vpfft
|
|
||||||
# - vpic
|
|
||||||
# - aws-isc-aarch64
|
|
||||||
# - sse2neon
|
|
||||||
#require: "@:999999999"
|
|
||||||
python:
|
|
||||||
# This is redundant after https://github.com/spack/spack/pull/33898
|
|
||||||
# but specified to allow the existance of a package.yaml for CI configs
|
|
||||||
require: "@3.7:"
|
|
||||||
|
|
||||||
|
# CI should never build develop/main/master versions of packages. Current issues:
|
||||||
|
# - e4s/dav
|
||||||
|
# - hdf5-vol-async => argobot@main
|
||||||
|
# - aws-ahug-*
|
||||||
|
# - snap
|
||||||
|
# - tycho2
|
||||||
|
# - amg2013
|
||||||
|
# - cosp2
|
||||||
|
# - snbone
|
||||||
|
# - vpfft
|
||||||
|
# - vpic
|
||||||
|
# - aws-isc-aarch64
|
||||||
|
# - sse2neon
|
||||||
|
|
||||||
|
# packages:
|
||||||
|
# all:
|
||||||
|
# require: "@:999999999"
|
@ -41,8 +41,6 @@ spack:
|
|||||||
require: mpich
|
require: mpich
|
||||||
mpich:
|
mpich:
|
||||||
require: '@4.1.1 ~wrapperrpath ~hwloc'
|
require: '@4.1.1 ~wrapperrpath ~hwloc'
|
||||||
python:
|
|
||||||
require: '@3.7.15'
|
|
||||||
py-cryptography:
|
py-cryptography:
|
||||||
require: '@38.0.1'
|
require: '@38.0.1'
|
||||||
unzip:
|
unzip:
|
||||||
|
@ -30,8 +30,6 @@ spack:
|
|||||||
variants: threads=openmp
|
variants: threads=openmp
|
||||||
paraview:
|
paraview:
|
||||||
require: '@5.11 ~qt+osmesa'
|
require: '@5.11 ~qt+osmesa'
|
||||||
python:
|
|
||||||
version: [3.7.15]
|
|
||||||
trilinos:
|
trilinos:
|
||||||
require:
|
require:
|
||||||
- one_of: [+amesos +amesos2 +anasazi +aztec +boost +epetra +epetraext +ifpack
|
- one_of: [+amesos +amesos2 +anasazi +aztec +boost +epetra +epetraext +ifpack
|
||||||
|
@ -310,6 +310,10 @@ class Python(Package):
|
|||||||
# https://bugs.python.org/issue45405
|
# https://bugs.python.org/issue45405
|
||||||
conflicts("@:3.7.2,3.8.0:3.8.12,3.9.0:3.9.10,3.10.0:3.10.2", when="%apple-clang@13:")
|
conflicts("@:3.7.2,3.8.0:3.8.12,3.9.0:3.9.10,3.10.0:3.10.2", when="%apple-clang@13:")
|
||||||
|
|
||||||
|
# See https://github.com/python/cpython/issues/106424
|
||||||
|
# datetime.now(timezone.utc) segfaults
|
||||||
|
conflicts("@3.9:", when="%oneapi@2022.2.1:")
|
||||||
|
|
||||||
# Used to cache various attributes that are expensive to compute
|
# Used to cache various attributes that are expensive to compute
|
||||||
_config_vars: Dict[str, Dict[str, str]] = {}
|
_config_vars: Dict[str, Dict[str, str]] = {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user