Skip to content

Commit 4456a21

Browse files
committed
Pull the correct dragon version
1 parent ab69e0c commit 4456a21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

smartsim/_core/_cli/scripts/dragon_install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def python_version() -> str:
5151
def dragon_pin() -> str:
5252
"""Return a string indicating the pinned major/minor version of the dragon
5353
package to install"""
54-
return "0.9"
54+
return "0.10"
5555

5656

5757
def _platform_filter(asset_name: str) -> bool:
@@ -60,7 +60,7 @@ def _platform_filter(asset_name: str) -> bool:
6060
6161
:param asset_name: A value to inspect for keywords indicating a Cray EX asset
6262
:returns: True if supplied value is correct for current platform"""
63-
key = "crayex"
63+
key = "hsn"
6464
is_cray = key in asset_name.lower()
6565
if is_crayex_platform():
6666
return is_cray

0 commit comments

Comments
 (0)