remove another Python 3.7 requirement & preference, since it was deprecated (#38710)

This commit is contained in:
Harmen Stoppels 2023-07-04 20:33:47 +02:00 committed by GitHub
parent a3d11a7973
commit d35149d174
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 26 deletions

View file

@ -1,23 +1,19 @@
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:"
packages: {}
# 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"

View file

@ -41,8 +41,6 @@ spack:
require: mpich
mpich:
require: '@4.1.1 ~wrapperrpath ~hwloc'
python:
require: '@3.7.15'
py-cryptography:
require: '@38.0.1'
unzip:

View file

@ -30,8 +30,6 @@ spack:
variants: threads=openmp
paraview:
require: '@5.11 ~qt+osmesa'
python:
version: [3.7.15]
trilinos:
require:
- one_of: [+amesos +amesos2 +anasazi +aztec +boost +epetra +epetraext +ifpack

View file

@ -310,6 +310,10 @@ class Python(Package):
# 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:")
# 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
_config_vars: Dict[str, Dict[str, str]] = {}