Skip to content

Commit a40403d

Browse files
authored
Merge pull request #491 from lanl/jhp/spack
Update package.py for spiner feature changes
2 parents 4ed61e8 + 12705c6 commit a40403d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- [[PR439]](https://github.com/lanl/singularity-eos/pull/439) Add mean atomic mass and number to EOS API
2020
- [[PR437]](https://github.com/lanl/singularity-eos/pull/437) Fix segfault on HIP, clean up warnings, add strict sanitizer test
2121
- [[PR375]](https://github.com/lanl/singularity-eos/pull/375) Added energy floor modifier
22+
- [[PR491]](https://github.com/lanl/singularity-eos/pull/491) Fixed spackage logic to point at correct spiner version for piecewise grids
2223

2324
### Changed (changing behavior/API/variables/...)
2425
- [[PR475]](https://github.com/lanl/singularity-eos/pull/475) Shrink the default variant. Notably moved Stiff Gas behind a flag.

spack-repo/packages/singularity-eos/package.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ class SingularityEos(CMakePackage, CudaPackage, ROCmPackage):
127127
depends_on("spiner +hdf5", when="+hdf5+spiner")
128128

129129
depends_on("spiner@:1.6.0", when="@:1.7.0 +spiner")
130-
depends_on("[email protected]:", when="@1.7.1: +spiner") #TODO version
130+
depends_on("[email protected]:", when="@1.7.1:1.9.0 +spiner")
131+
depends_on("[email protected]:", when="@1.9.1: +spiner")
131132
depends_on("spiner@main", when="@main +spiner")
132133

133134
depends_on("mpark-variant")

0 commit comments

Comments
 (0)