I am trying to use argparse integration, but it turns out that one cannot import BitmathType without having the progressbar package installed.
Steps to reproduce:
python -m venv .tmp-env
. .tmp-env/bin/activate
pip install --upgrade pip setuptools wheel
pip install bitmath
python -c 'from bitmath.integrations import BitmathType'
This will raise the following error:
ModuleNotFoundError: No module named 'progressbar'
I do not think that the progressbar package is required.
Tested with Python 3.7.3 and bitmath 1.3.3.1 on macOS 10.14.5.
I am trying to use
argparseintegration, but it turns out that one cannot importBitmathTypewithout having theprogressbarpackage installed.Steps to reproduce:
This will raise the following error:
I do not think that the
progressbarpackage is required.Tested with Python 3.7.3 and
bitmath1.3.3.1 on macOS 10.14.5.