Skip to content

Commit

Permalink
bump to use qe 7.2 from conda-forge (#404)
Browse files Browse the repository at this point in the history
From QE 7.2, the conda-forge support ARM64 architecture.
  • Loading branch information
unkcpz committed May 29, 2023
1 parent d6d028e commit f311cc5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions aiidalab_qe/parameters/qeapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ run_bands: false
run_pdos: false

## Codes
dos_code: dos-7.0@localhost
projwfc_code: projwfc-7.0@localhost
pw_code: pw-7.0@localhost
dos_code: dos-7.2@localhost
projwfc_code: projwfc-7.2@localhost
pw_code: pw-7.2@localhost

## Material settings
spin_type: none
Expand Down
2 changes: 1 addition & 1 deletion aiidalab_qe/setup_codes.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
FN_LOCKFILE = Path.home().joinpath(".install-qe-on-localhost.lock")
FN_DO_NOT_SETUP = Path.cwd().joinpath(".do-not-setup-on-localhost")

QE_VERSION = "7.0"
QE_VERSION = "7.2"

CONDA_ENV_PREFIX = Path.home().joinpath(
".conda", "envs", f"quantum-espresso-{QE_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion aiidalab_qe/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ def __init__(self, **kwargs):
self.sssp_installation_status.observe(self._toggle_install_widgets, "installed")

# The QE setup widget checks whether there are codes that match specific
# expected labels (e.g. "pw-7.0@localhost") and triggers both the
# expected labels (e.g. "pw-7.2@localhost") and triggers both the
# installation of QE into a dedicated conda environment and the setup of
# the codes in case that they are not already configured.
self.qe_setup_status = QESetupWidget()
Expand Down

0 comments on commit f311cc5

Please sign in to comment.