Upgraded some embedded dependencies to be ready for Python 3.10. This doesn't mean that it's fully supported right now.

This commit is contained in:
morpheus65535 2021-12-01 15:47:00 -05:00
parent 2d214bfbd5
commit 402c82d84f
244 changed files with 8217 additions and 96583 deletions

View file

@ -1,7 +1,9 @@
from warnings import warn
from .notebook import * # NOQA
from .notebook import __all__ # NOQA
from .std import TqdmDeprecationWarning
from warnings import warn
warn("This function will be removed in tqdm==5.0.0\n"
"Please use `tqdm.notebook.*` instead of `tqdm._tqdm_notebook.*`",
TqdmDeprecationWarning, stacklevel=2)