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
24 changes: 24 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@ For more detailed information, please see the git log.

These release notes can also be consulted at https://easybuild.readthedocs.io/en/latest/Release_notes.html.

v3.7.1 (October 18th 2018)
--------------------------

bugfix release
- various enhancements, including:
- generate .modulerc.lua when Lua syntax and Lmod >= 7.8 is used (#2597)
- allow --force to use regex if --try-toolchain can not map intelligently (#2605)
- add support for disabling modules tool version check (#2610)
- add support to ModuleGenerator.modulerc method to also write .modulerc file (#2611)
- check whether module file being wrapped exists in same directory as module wrapper when using Lmod 6.x (#2611)
- various bug fixes, including:
- stop relying on 'easy_install' in bootstrap script, use 'python -m easy_install' instead (#2590)
- fix templating of values in list_software function (#2591)
- fix composing of lib64 fallback paths in sanity check (#2602)
- determine file_info for all easyconfigs before any actual copying in copy_easyconfigs function (#2604)
- also check for module wrappers in 'ModulesTool.exist' method (#2606)
- add trailing newline to module load message if it's not there yet (#2613)
- retain all dependencies when determining dependency tree of a toolchain (#2617)
- protect exts_lists from templating in dump method (#2619)
- making CUDA capability detection more robust (#2621)
- other changes:
- lower required Lmod version to 6.5.1 (#2593)


v3.7.0 (September 25th 2018)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion easybuild/tools/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like
# UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0'
# This causes problems further up the dependency chain...
VERSION = LooseVersion('3.7.1.dev0')
VERSION = LooseVersion('3.7.1')
UNKNOWN = 'UNKNOWN'


Expand Down