Skip to content

Commit

Permalink
Update monty (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen authored Sep 5, 2023
1 parent fb96403 commit 59eeedf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
"custodian>=2023.6.5",
"emmet-core>=0.51.11",
"maggma>=0.51.18",
"monty>=2023.4.10",
"monty>=2023.9.5",
"numpy>=1.24.0",
"pydantic<2",
"pymatgen>=2023.9.2",
Expand Down
2 changes: 1 addition & 1 deletion src/quacc/utils/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def copy_decompress(source_files: list[str], destination: str) -> None:
if Path(z_path).exists():
z_file = os.path.basename(z_path)
copy(z_path, Path(destination, z_file))
decompress_file(str(Path(destination, z_file)))
decompress_file(Path(destination, z_file))
else:
warnings.warn(f"Cannot find file: {z_path}", UserWarning)

Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cclib==1.8
custodian==2023.7.22
emmet-core==0.67.5
maggma==0.54.0
monty==2023.8.8
monty==2023.9.5
numpy==1.25.2
pydantic==1.10.2
pymatgen==2023.9.2

0 comments on commit 59eeedf

Please sign in to comment.