Skip to content

Commit

Permalink
fix trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
prudhomm authored Sep 18, 2024
1 parent 05423f0 commit 6b0e27e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions var/spack/repos/builtin/packages/feelpp/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ class Feelpp(CMakePackage):
variant("python", default=True, description="Enable Python wrappers")
variant("quickstart", default=True, description="Enable the quickstart examples")
variant("tests", default=False, description="Enable the tests")

# Add variants for C++ standards
variant(
"cxxstd", default="20", description="C++ standard", values=["17", "20", "23"], multi=False
)

# Specify dependencies with required versions
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("cxx", type="build")
depends_on("fortran", type="build")
depends_on("[email protected]:", type="build")
depends_on("[email protected]:")
Expand Down Expand Up @@ -110,4 +110,4 @@ def install(self, spec, prefix):

def test(self, spec, prefix):
ctest = which("ctest")
ctest("--preset", self.get_preset_name(), "-R", "qs_laplacian")
ctest("--preset", self.get_preset_name(), "-R", "qs_laplacian")

0 comments on commit 6b0e27e

Please sign in to comment.