summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHarmen Stoppels <me@harmenstoppels.nl>2024-05-06 15:00:41 +0200
committerGitHub <noreply@github.com>2024-05-06 15:00:41 +0200
commit9b4ca0be40edb02115be94bbc428ac546d63030e (patch)
tree96f85a589dcc7bb7e9d646fde8b42a1187fbb365 /lib
parentdc71dcfdc214a7352ea4dad54238cf60c2201605 (diff)
downloadspack-9b4ca0be40edb02115be94bbc428ac546d63030e.tar.gz
spack-9b4ca0be40edb02115be94bbc428ac546d63030e.tar.bz2
spack-9b4ca0be40edb02115be94bbc428ac546d63030e.tar.xz
spack-9b4ca0be40edb02115be94bbc428ac546d63030e.zip
clingo bootstrap: remove 3.12 patch and concretizer workarounds (#44028)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/bootstrap/core.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/spack/spack/bootstrap/core.py b/lib/spack/spack/bootstrap/core.py
index 1b8c4d5f18..e5e0983c24 100644
--- a/lib/spack/spack/bootstrap/core.py
+++ b/lib/spack/spack/bootstrap/core.py
@@ -270,10 +270,6 @@ class SourceBootstrapper(Bootstrapper):
with spack_python_interpreter():
# Add hint to use frontend operating system on Cray
concrete_spec = spack.spec.Spec(abstract_spec_str + " ^" + spec_for_current_python())
- # This is needed to help the old concretizer taking the `setuptools` dependency
- # only when bootstrapping from sources on Python 3.12
- if spec_for_current_python() == "python@3.12":
- concrete_spec.constrain("+force_setuptools")
if module == "clingo":
# TODO: remove when the old concretizer is deprecated # pylint: disable=fixme