The tqdm package was recently added as a dependency of cadCAD, but wasn't included in the setup.py file. When installed from PyPi, this results in the error ModuleNotFoundError: No module named 'tqdm'. This error does not occur in the tests because the GitHub workflow installs dependencies from the requirements.txt file.
The
tqdm
package was recently added as a dependency of cadCAD, but wasn't included in the setup.py file. When installed from PyPi, this results in the errorModuleNotFoundError: No module named 'tqdm'
. This error does not occur in the tests because the GitHub workflow installs dependencies from therequirements.txt
file.