Skip to content

Commit eb7814c

Browse files
authored
Merge pull request #133 from bioimage-io/add_tqdm_dep
Add missing tqdm dependency
2 parents 869931c + 71b0192 commit eb7814c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
"Programming Language :: Python :: 3.8",
2626
],
2727
packages=find_namespace_packages(exclude=["tests"]), # Required
28-
install_requires=["bioimageio.spec", "imageio>=2.5", "numpy", "ruamel.yaml", "xarray"],
28+
install_requires=["bioimageio.spec", "imageio>=2.5", "numpy", "ruamel.yaml", "tqdm", "xarray"],
2929
include_package_data=True,
3030
extras_require={
31-
"test": ["pytest"],
31+
"test": ["pytest", "black", "mypy"],
3232
"dev": ["pre-commit"],
3333
"pytorch": ["pytorch>=1.6", "torchvision", "cudatoolkit>=10.1"],
3434
"tensorflow": ["tensorflow"],

0 commit comments

Comments
 (0)