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 easybuild/easyblocks/q/quantumespresso.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,12 @@ def _adjust_compiler_flags(self, comp_fam):
def configure_step(self):
"""Custom configuration procedure for Quantum ESPRESSO."""

if LooseVersion(self.version) >= LooseVersion("7.3.1"):
raise EasyBuildError(
"QuantumESPRESSO 7.3.1 and later are not supported with the this easyblock (ConfigureMake), " +
"use the EB_QuantumESPRESSOcmake (CMakeMake) easyblock instead."
)

# compose list of DFLAGS (flag, value, keep_stuff)
# for guidelines, see include/defs.h.README in sources
self.dflags = []
Expand Down
Loading