Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
### Added

## [6.5.0] - 2026-03-26

### Changed

- Add `USE_DSL` environment variable pilot a swap from the regular `GEOSpyD` python to the `DSL/latest` stack

## [6.4.1] - 2026-03-26

### Fixed
Expand Down
7 changes: 6 additions & 1 deletion g5_modules
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,12 @@ if ( $site == NCCS ) then

set basedir = /discover/swdev/gmao_SIteam/Baselibs/ESMA-Baselibs-9.7.1/x86_64-pc-linux-gnu/ifort_2021.13.0-intelmpi_2021.13.0

set mod1 = python/GEOSpyD/25.3.1-0/3.13
if ($?USE_DSL) then
set mod1 = DSL/latest
else
set mod1 = python/GEOSpyD/25.3.1-0/3.13
endif

set mod2 = GEOSenv

set mod3 = comp/gcc/12.3.0
Expand Down
Loading