Add missing xtl dependency for fenics-basix and py-fenics-basix (#25151)

This commit is contained in:
Garth N. Wells 2021-08-01 03:10:24 +01:00 committed by GitHub
parent b5f587bbe0
commit 60eef9c0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -18,5 +18,6 @@ class FenicsBasix(CMakePackage):
version("0.1.0", sha256="2ab41fe6ad4f6c42f01b17a6e7c39debb4e0ae61c334d1caebee78b741bca4e7")
depends_on("cmake@3.18:", type="build")
depends_on("xtl@0.7.2:")
depends_on("xtensor@0.23.10:")
depends_on("blas", type=("build", "run"))

View File

@ -24,6 +24,7 @@ class PyFenicsBasix(PythonPackage):
depends_on("python@3.7:", type=('build', 'run'))
depends_on("py-setuptools", type="build")
depends_on("cmake@3.18:", type="build")
depends_on("xtl@0.7.2:", type="build")
depends_on("xtensor@0.23.10:", type="build")
depends_on("py-pybind11@2.6.2:2.7.99", type="build")