Skip to content

Commit

Permalink
Pull the correct dragon version
Browse files Browse the repository at this point in the history
  • Loading branch information
MattToast committed Oct 18, 2024
1 parent ab69e0c commit 4456a21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smartsim/_core/_cli/scripts/dragon_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def python_version() -> str:
def dragon_pin() -> str:
"""Return a string indicating the pinned major/minor version of the dragon
package to install"""
return "0.9"
return "0.10"


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

0 comments on commit 4456a21

Please sign in to comment.