From b9873c5cea18b3c1573b57372ed7575ca3fef151 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Tue, 15 Oct 2024 11:30:07 +0200 Subject: [PATCH] python: drop build-tools tag (#46980) Remove the `build-tools` tag of python, otherwise these types of concretizations are possible: ``` py-root ^py-pip ^python@3.12 ^python@3.13 ``` So, a package would be configured with py-pip using python 3.12, but installed for 3.13, which does not work. --- var/spack/repos/builtin/packages/python/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/python/package.py b/var/spack/repos/builtin/packages/python/package.py index 5db16ec1750..3bfdc240d04 100644 --- a/var/spack/repos/builtin/packages/python/package.py +++ b/var/spack/repos/builtin/packages/python/package.py @@ -47,7 +47,7 @@ class Python(Package): url = "https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz" list_url = "https://www.python.org/ftp/python/" list_depth = 1 - tags = ["windows", "build-tools"] + tags = ["windows"] maintainers("skosukhin", "scheibelp")