-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make sure
from narwhals.stable.v1.dependencies
import works (#…
- Loading branch information
1 parent
e3876d6
commit afd92dc
Showing
8 changed files
with
65 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
from __future__ import annotations | ||
|
||
from narwhals.dependencies import get_cudf | ||
from narwhals.dependencies import get_ibis | ||
from narwhals.dependencies import get_modin | ||
from narwhals.dependencies import get_numpy | ||
from narwhals.dependencies import get_pandas | ||
from narwhals.dependencies import get_polars | ||
from narwhals.dependencies import get_pyarrow | ||
from narwhals.dependencies import is_cudf_dataframe | ||
from narwhals.dependencies import is_cudf_series | ||
from narwhals.dependencies import is_dask_dataframe | ||
from narwhals.dependencies import is_ibis_table | ||
from narwhals.dependencies import is_into_dataframe | ||
from narwhals.dependencies import is_into_series | ||
from narwhals.dependencies import is_modin_dataframe | ||
from narwhals.dependencies import is_modin_series | ||
from narwhals.dependencies import is_numpy_array | ||
from narwhals.dependencies import is_pandas_dataframe | ||
from narwhals.dependencies import is_pandas_index | ||
from narwhals.dependencies import is_pandas_like_dataframe | ||
from narwhals.dependencies import is_pandas_like_series | ||
from narwhals.dependencies import is_pandas_series | ||
from narwhals.dependencies import is_polars_dataframe | ||
from narwhals.dependencies import is_polars_lazyframe | ||
from narwhals.dependencies import is_polars_series | ||
from narwhals.dependencies import is_pyarrow_chunked_array | ||
from narwhals.dependencies import is_pyarrow_table | ||
|
||
__all__ = [ | ||
"get_polars", | ||
"get_pandas", | ||
"get_modin", | ||
"get_cudf", | ||
"get_pyarrow", | ||
"get_numpy", | ||
"get_ibis", | ||
"is_ibis_table", | ||
"is_pandas_dataframe", | ||
"is_pandas_series", | ||
"is_pandas_index", | ||
"is_polars_dataframe", | ||
"is_polars_lazyframe", | ||
"is_polars_series", | ||
"is_modin_dataframe", | ||
"is_modin_series", | ||
"is_cudf_dataframe", | ||
"is_cudf_series", | ||
"is_pyarrow_table", | ||
"is_pyarrow_chunked_array", | ||
"is_numpy_array", | ||
"is_dask_dataframe", | ||
"is_pandas_like_dataframe", | ||
"is_pandas_like_series", | ||
"is_into_dataframe", | ||
"is_into_series", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters