petsc: Fix Python version number, improve code layout#1920
petsc: Fix Python version number, improve code layout#1920citibeth wants to merge 1 commit intospack:developfrom
Conversation
|
|
||
| # Build dependencies | ||
| depends_on('python @2.6:2.7') | ||
| depends_on('python @2.6:2.8', type='build') |
There was a problem hiding this comment.
The version range was correct. The range is inclusive, as in 2.6:2.7 means any version of 2.6.X or 2.7.X. You can confirm this by running spack spec petsc. For me, it chooses [email protected].
|
Is this a change? Last I knew, 2.6:2.7 would give everything UP THROUGH On Wed, Oct 5, 2016 at 5:44 PM, Adam J. Stewart [email protected]
|
|
@citibeth: 2.7 has always been intended to include |
|
You might be thinking about how |
|
Yes thanks, that was it. On Wed, Oct 5, 2016 at 6:01 PM, Adam J. Stewart [email protected]
|
|
Yeah, sorry for that. That is a concretization issue. The concretizer thinks that if a package has a single version that is not a range or a list, that it's concrete, so if you say Probably a version needs to know whether it is |
Error in Python version range.