|
16 | 16 | _DuckDB: TypeAlias = Literal["duckdb"] |
17 | 17 | _Pandas: TypeAlias = Literal["pandas"] |
18 | 18 | _Modin: TypeAlias = Literal["modin"] |
19 | | -_Cudf: TypeAlias = Literal["cudf"] |
| 19 | +_CuDF: TypeAlias = Literal["cudf"] |
20 | 20 | _PySpark: TypeAlias = Literal["pyspark"] |
21 | 21 | _SQLFrame: TypeAlias = Literal["sqlframe"] |
22 | 22 | _PySparkConnect: TypeAlias = Literal["pyspark[connect]"] |
23 | 23 | _Ibis: TypeAlias = Literal["ibis"] |
24 | | -_PandasLike: TypeAlias = Literal[_Pandas, _Cudf, _Modin] |
| 24 | +_PandasLike: TypeAlias = Literal[_Pandas, _CuDF, _Modin] |
25 | 25 | _SparkLike: TypeAlias = Literal[_PySpark, _SQLFrame, _PySparkConnect] |
26 | 26 | _EagerOnly: TypeAlias = Literal[_PandasLike, _Arrow] |
27 | 27 | _EagerAllowed: TypeAlias = Literal[_Polars, _EagerOnly] |
|
31 | 31 | # `Implementation` aliases |
32 | 32 | _PandasImpl: TypeAlias = Literal[Implementation.PANDAS] |
33 | 33 | _ModinImpl: TypeAlias = Literal[Implementation.MODIN] |
34 | | -_CudfImpl: TypeAlias = Literal[Implementation.CUDF] |
| 34 | +_CuDFImpl: TypeAlias = Literal[Implementation.CUDF] |
35 | 35 | _PySparkImpl: TypeAlias = Literal[Implementation.PYSPARK] |
36 | 36 | _SQLFrameImpl: TypeAlias = Literal[Implementation.SQLFRAME] |
37 | 37 | _PySparkConnectImpl: TypeAlias = Literal[Implementation.PYSPARK_CONNECT] |
|
40 | 40 | _DaskImpl: TypeAlias = Literal[Implementation.DASK] |
41 | 41 | _DuckDBImpl: TypeAlias = Literal[Implementation.DUCKDB] |
42 | 42 | _IbisImpl: TypeAlias = Literal[Implementation.IBIS] |
43 | | -_PandasLikeImpl: TypeAlias = Literal[_PandasImpl, _CudfImpl, _ModinImpl] |
| 43 | +_PandasLikeImpl: TypeAlias = Literal[_PandasImpl, _CuDFImpl, _ModinImpl] |
44 | 44 | _SparkLikeImpl: TypeAlias = Literal[_PySparkImpl, _SQLFrameImpl, _PySparkConnectImpl] |
45 | 45 | _EagerOnlyImpl: TypeAlias = Literal[_PandasLikeImpl, _ArrowImpl] |
46 | 46 | _EagerAllowedImpl: TypeAlias = Literal[_EagerOnlyImpl, _PolarsImpl] # noqa: PYI047 |
|
54 | 54 |
|
55 | 55 | # `str | Implementation` aliases |
56 | 56 | Pandas: TypeAlias = Literal[_Pandas, _PandasImpl] |
57 | | -Cudf: TypeAlias = Literal[_Cudf, _CudfImpl] |
| 57 | +CuDF: TypeAlias = Literal[_CuDF, _CuDFImpl] |
58 | 58 | Modin: TypeAlias = Literal[_Modin, _ModinImpl] |
59 | 59 | PySpark: TypeAlias = Literal[_PySpark, _PySparkImpl] |
60 | 60 | SQLFrame: TypeAlias = Literal[_SQLFrame, _SQLFrameImpl] |
|
0 commit comments