Improve spack.build_systems typing (#48590)

This commit is contained in:
Harmen Stoppels
2025-01-23 12:15:43 +01:00
committed by GitHub
parent daba1a805e
commit 9992b563db
23 changed files with 174 additions and 109 deletions

View File

@@ -56,13 +56,13 @@ If you look at the ``perl`` package, you'll see:
.. code-block:: python
phases = ["configure", "build", "install"]
phases = ("configure", "build", "install")
Similarly, ``cmake`` defines:
.. code-block:: python
phases = ["bootstrap", "build", "install"]
phases = ("bootstrap", "build", "install")
If we look at the ``cmake`` example, this tells Spack's ``PackageBase``
class to run the ``bootstrap``, ``build``, and ``install`` functions