Skip to content

Commit

Permalink
bump min tqdm version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wolearyc committed Sep 16, 2024
1 parent a01d286 commit 89fa431
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spglib >= 1.16.4;python_version=='3.12' # minimum working
tabulate >= 0.8.8;python_version=='3.10' # minimum working
tabulate >= 0.8.8;python_version=='3.11' # minimum working
tabulate >= 0.8.8;python_version=='3.12' # minimum working
tqdm
tqdm >= 2.0
2 changes: 1 addition & 1 deletion ramannoodle/io/io_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _read_polarizability_dataset(
atomic_numbers_list: list[list[int]] = []
positions_list: list[NDArray[np.float64]] = []
polarizabilities: list[NDArray[np.float64]] = []
for file_index, filepath in tqdm(list(enumerate(filepaths)), unit="files"):
for file_index, filepath in tqdm(list(enumerate(filepaths)), unit=" files"):
lattice, atomic_numbers, positions, polarizability = (
read_structure_and_polarizability_fn(filepath)
)
Expand Down

0 comments on commit 89fa431

Please sign in to comment.