Skip to content

Commit 088c7e3

Browse files
authored
Merge pull request #4167 from migueldiascosta/eb470
prepare release notes for EasyBuild v4.7.0 + bump version to 4.7.0
2 parents 8ba299f + 92abdb3 commit 088c7e3

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

RELEASE_NOTES

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,47 @@ For more detailed information, please see the git log.
44
These release notes can also be consulted at https://easybuild.readthedocs.io/en/latest/Release_notes.html.
55

66

7+
v4.7.0 (January 9th 2023)
8+
-------------------------
9+
10+
feature release
11+
12+
- print deprecation warning with running EasyBuild with Python 2 (#4136)
13+
- various enhancements, including:
14+
- add support for checksums specified in external `checksums.json` file (#3749)
15+
- vendor distutils.version.LooseVersion as easybuild.tools.LooseVersion (since distutils is deprecated in Python 3.10) (#3794, #4156)
16+
- take into account custom configuration options specified in easystack file (#4057)
17+
- add support for using --output-format=md (MarkDown) (#4117, #4155)
18+
- add support for --filter-rpath-sanity-libs to skip RPATH sanity check for designated libraries (#4119)
19+
- add sanity_check_load_module method to EasyBlock to provide control over when module is loaded during sanity check step (#4125)
20+
- add eb_bash_completion_local.bash script to setup.py (#4127)
21+
- check whether nvidia-smi/rocm-smi command is available before trying to run it in `get_gpu_info` (#4131)
22+
- add gfbf as subtoolchain of foss (#4143)
23+
- add support for postinstallmsgs (#4145)
24+
- make iimkl toolchain aware of intel-compilers (#4146)
25+
- add definition for nvofbf toolchain (#4157, #4163)
26+
- various bug fixes, including:
27+
- also use EasyConfig instances cache in process_easyconfig when build_specs is empty dict (#4107)
28+
- fix build options that should have empty list as default value (#4108)
29+
- catch easyconfig parsing failure so we can generate and post a test report (#4109)
30+
- add explicit return when no checksums match those specified in a tuple (#4112)
31+
- tweak findPythonDeps.py script to use canonical package names (#4118)
32+
- add `-fdefault-double-8` to `r8` toolchain compiler option for GCC (to be consistent with Intel) (#4121)
33+
- always start with empty list for banned/requires libraries to avoid that corresponding build option is updated in-place (#4137)
34+
- fix container tests by using EPEL archive URL for downloading Singularity RPM (#4138)
35+
- use -march=x86-64 -mtune=generic instead of -xSSE2 when using Intel oneAPI compilers (#4147)
36+
- partially skip test_det_copy_ec_specs if no GitHub token is available (#4149)
37+
- other changes:
38+
- drop support for easystack files using 'software' top-level key (#4057)
39+
- also run unit tests with Python 3.11 + add Python 3.11 to classifiers in setup.py (#4092, #4141)
40+
- use new EasyBuild logo in README (#4123)
41+
- automatically cancel Github Action workflow runs for outdated commits (#4132)
42+
- auto-enable use of oneAPI C/C++ compilers for intel-compilers >= 2022.2.0 (#4135)
43+
- trim CI test configurations to avoid hitting GitHub rate limits (#4148)
44+
- various tweaks to docstrings and help messages to fix problems with auto-generated documentation in MarkDown format (#4129, #4130, #4154, #4160, #4162, #4168)
45+
- update copyright lines for 2023 (#4161)
46+
47+
748
v4.6.2 (October 21st 2022)
849
--------------------------
950

easybuild/tools/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like
4646
# UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0'
4747
# This causes problems further up the dependency chain...
48-
VERSION = LooseVersion('4.6.3.dev0')
48+
VERSION = LooseVersion('4.7.0')
4949
UNKNOWN = 'UNKNOWN'
5050

5151

0 commit comments

Comments
 (0)