Dear Maintainer(s),

package python3-tqdm won't work with current version 6.0.0.
Try this short example in a jupyter notebook:

from tqdm.notebook import trange, tqdm
from time import sleep

for i in trange(3, desc='1st loop'):
    for j in tqdm(range(100), desc='2nd loop'):
        sleep(0.01)

I got this answer on tqdm's github repository:

https://github.com/tqdm/tqdm/issues/1156

which supports the need for upgrading the ipywidgets version in debian.

Regards,
Jörg.

Reply via email to