Skip to content
Snippets Groups Projects
Commit 478a071e authored by Lorenz Thielbeer's avatar Lorenz Thielbeer
Browse files

Update package.py to fix runtime error

parent 56f1d316
No related branches found
No related tags found
2 merge requests!148create new experimental release,!143Update package.py of apbs to fix runtime error
...@@ -31,10 +31,10 @@ class Apbs(CMakePackage): ...@@ -31,10 +31,10 @@ class Apbs(CMakePackage):
# Dependencies. # Dependencies.
depends_on('cmake@3.19', type='build') depends_on('cmake@3.19', type='build')
depends_on('python@3.8:3.10', type=('build')) depends_on('python@3.8:3.10', type=('build', 'run'))
depends_on('blas', type='build') depends_on('blas', type=('build', 'run'))
depends_on('suite-sparse', type='build') depends_on('suite-sparse', type=('build', 'run'))
depends_on('maloc', type='build') depends_on('maloc', type=('build', 'run'))
def cmake_args(self): def cmake_args(self):
# Min and max Python versions need to be set as variables to pass tests. # Min and max Python versions need to be set as variables to pass tests.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment