Skip to content

Commit c200e9a

Browse files
authored
remove unused tqdm (#746)
tqdm is not used at present. It may be imported in #350 for tests, but since it is not really used for production, it is safe to remove this requirement.
1 parent af7bf3b commit c200e9a

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ venv*
2727
_build
2828
_templates
2929
API_CC
30+
dp/
31+
build_lammps/

deepmd/utils/neighbor_stat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import math
22
import logging
33
import numpy as np
4-
from tqdm import tqdm
54
from deepmd.env import tf
65
from typing import Tuple, List
76
from deepmd.env import op_module

deepmd/utils/tabulate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import math
33
import logging
44
import numpy as np
5-
from tqdm import tqdm
65
from typing import Tuple, List
76
from deepmd.env import tf
87
from deepmd.env import op_module

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ numpy
22
scipy
33
pyyaml
44
dargs >= 0.2.2
5-
tqdm
65
typing_extensions

0 commit comments

Comments
 (0)