Skip to content

Commit

Permalink
Clear band structure data incrementally (#807)
Browse files Browse the repository at this point in the history
* Clear bs data incrementally in get stage

* Linting

* Bump pmg analysis diffusion

* FIx diffusion dep

* Pin pymatgen in emmet-builders

* Linting

* Unpin pmg in builders

* Bump pmg diffuson

* Linting
  • Loading branch information
munrojm authored Aug 16, 2023
1 parent 518a78c commit f75f0cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,10 @@ def _update_materials_doc(self, mat_id):
except Exception:
bs_type = None

# Clear bs data
bs = None
bs_dict = None

is_hubbard = task_query["input"]["is_hubbard"]
lmaxmix = task_query["input"]["incar"].get(
"LMAXMIX", 2
Expand Down
2 changes: 1 addition & 1 deletion emmet-builders/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
author_email="[email protected]",
url="https://github.com/materialsproject/emmet",
packages=find_namespace_packages(include=["emmet.*"]),
install_requires=["emmet-core[all]", "maggma>=0.51.16", "matminer>=0.7.3", "pymatgen<2023.8.10"],
install_requires=["emmet-core[all]", "maggma>=0.51.16", "matminer>=0.7.3"],
extras_require={
"test": [
"pre-commit",
Expand Down
2 changes: 1 addition & 1 deletion emmet-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"all": [
"seekpath>=2.0.1",
"robocrys>=0.2.8",
"pymatgen-analysis-diffusion>=2022.1.15",
"pymatgen-analysis-diffusion>=2023.8.15",
"pymatgen-analysis-alloys>=0.0.3",
],
"test": [
Expand Down

0 comments on commit f75f0cd

Please sign in to comment.