summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2023-10-26 15:25:56 -0500
committerGitHub <noreply@github.com>2023-10-26 15:25:56 -0500
commitb4b25dec6418e18742b3faaf2e665e5c193146fb (patch)
treecd0c7673bb25d627b049f4744fe62e06f65d2510
parent81172f9251ff0b3409b07d5b9d13b214766ff1b1 (diff)
downloadspack-b4b25dec6418e18742b3faaf2e665e5c193146fb.tar.gz
spack-b4b25dec6418e18742b3faaf2e665e5c193146fb.tar.bz2
spack-b4b25dec6418e18742b3faaf2e665e5c193146fb.tar.xz
spack-b4b25dec6418e18742b3faaf2e665e5c193146fb.zip
PythonPackage: allow archive_files to be overridden (#40694)
-rw-r--r--lib/spack/spack/build_systems/python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/python.py b/lib/spack/spack/build_systems/python.py
index c370178d70..7f71cbae70 100644
--- a/lib/spack/spack/build_systems/python.py
+++ b/lib/spack/spack/build_systems/python.py
@@ -425,7 +425,7 @@ class PythonPipBuilder(BaseBuilder):
legacy_long_methods = ("install_options", "global_options", "config_settings")
#: Names associated with package attributes in the old build-system format
- legacy_attributes = ("build_directory", "install_time_test_callbacks")
+ legacy_attributes = ("archive_files", "build_directory", "install_time_test_callbacks")
#: Callback names for install-time test
install_time_test_callbacks = ["test"]