Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Klaus Noelp
ebrains-spack-builds
Commits
63bdc717
Commit
63bdc717
authored
2 years ago
by
Lorenz Thielbeer
Browse files
Options
Downloads
Patches
Plain Diff
Update package.py to be compatible with python 3.8
parent
4e794540
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/apbs/package.py
+2
-2
2 additions, 2 deletions
packages/apbs/package.py
with
2 additions
and
2 deletions
packages/apbs/package.py
+
2
−
2
View file @
63bdc717
...
...
@@ -31,7 +31,7 @@ class Apbs(CMakePackage):
# Dependencies.
depends_on
(
'
cmake@3.19
'
,
type
=
'
build
'
)
depends_on
(
'
python@3.
9
:3.10
'
,
type
=
(
'
build
'
))
depends_on
(
'
python@3.
8
:3.10
'
,
type
=
(
'
build
'
))
depends_on
(
'
blas
'
,
type
=
'
build
'
)
depends_on
(
'
suite-sparse
'
,
type
=
'
build
'
)
depends_on
(
'
maloc
'
,
type
=
'
build
'
)
...
...
@@ -40,7 +40,7 @@ class Apbs(CMakePackage):
# Min and max Python versions need to be set as variables to pass tests.
# See tests/CMakeLists.txt lines 6-14.
args
=
[
'
-DPYTHON_MIN_VERSION=3.
9
'
,
'
-DPYTHON_MIN_VERSION=3.
8
'
,
'
-DPYTHON_MAX_VERSION=3.10
'
,
]
return
args
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment