Skip to content

Commit

Permalink
remove unused tqdm (#746)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
njzjz authored Jun 15, 2021
1 parent af7bf3b commit c200e9a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ venv*
_build
_templates
API_CC
dp/
build_lammps/
1 change: 0 additions & 1 deletion deepmd/utils/neighbor_stat.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import math
import logging
import numpy as np
from tqdm import tqdm
from deepmd.env import tf
from typing import Tuple, List
from deepmd.env import op_module
Expand Down
1 change: 0 additions & 1 deletion deepmd/utils/tabulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import math
import logging
import numpy as np
from tqdm import tqdm
from typing import Tuple, List
from deepmd.env import tf
from deepmd.env import op_module
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ numpy
scipy
pyyaml
dargs >= 0.2.2
tqdm
typing_extensions

0 comments on commit c200e9a

Please sign in to comment.