forked from JCSDA/spack-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'py-dask +delayed' to gmao-swell-env and add comments in that pac…
…kage and in py-xnrl about the +delayed variant (JCSDA#1246) Add 'py-dask +delayed' to gmao-swell-env (so that it is in the unified environment, as requested by GMAO originally) and add comments in that package and in py-xnrl about the +delayed variant. Because this variant affects which versions of py-dask can be used, we should modify both packages at the same time. At the moment, we still need the +delayed variant in py-xnrl.
- Loading branch information
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,10 +45,13 @@ class GmaoSwellEnv(BundlePackage): | |
depends_on("py-urllib3", type="run") | ||
depends_on("py-wheel", type="run") | ||
depends_on("py-setuptools", type="run") | ||
|
||
# Different versions than other bundles | ||
depends_on("[email protected]:", type="run") | ||
depends_on("py-pyyaml@6:", type="run") | ||
depends_on("py-pycodestyle", type="run") | ||
depends_on("py-pyyaml", type="run") | ||
# Note that the +delayed option is for compatibility | ||
# with the py-xnrl package (this restricts py-dask | ||
# to certain versions, since the newest versions | ||
# don't have that option anymore. | ||
depends_on("py-dask +delayed", type="run") | ||
|
||
# Future dependencies needed | ||
# depends_on("py-bokeh", type="run") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters