Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove TqdmExperimentalWarning #854

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nbs/src/core/core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"import utilsforecast.processing as ufp\n",
"from fugue.execution.factory import make_execution_engine, try_get_context_execution_engine\n",
"from threadpoolctl import threadpool_limits\n",
"from tqdm.autonotebook import tqdm\n",
"from tqdm.auto import tqdm\n",
"from triad import conditional_dispatcher\n",
"from utilsforecast.compat import DataFrame, pl_DataFrame, pl_Series\n",
"from utilsforecast.grouped_array import GroupedArray as BaseGroupedArray\n",
Expand Down
2 changes: 1 addition & 1 deletion statsforecast/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
try_get_context_execution_engine,
)
from threadpoolctl import threadpool_limits
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm
from triad import conditional_dispatcher
from utilsforecast.compat import DataFrame, pl_DataFrame, pl_Series
from utilsforecast.grouped_array import GroupedArray as BaseGroupedArray
Expand Down
Loading