Skip to content

remove some outdated api_version args #296

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

Merged
Merged
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
6 changes: 2 additions & 4 deletions spec/API_specification/dataframe_api/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,19 +114,18 @@ def column_from_sequence(
*,
dtype: Any,
name: str = "",
api_version: str | None = None,
) -> Column:
...

@staticmethod
def dataframe_from_dict(
data: Mapping[str, Column], *, api_version: str | None = None
data: Mapping[str, Column]
) -> DataFrame:
...

@staticmethod
def column_from_1d_array(
array: Any, *, dtype: Any, name: str = "", api_version: str | None = None
array: Any, *, dtype: Any, name: str = ""
) -> Column:
...

Expand All @@ -136,7 +135,6 @@ def dataframe_from_2d_array(
*,
names: Sequence[str],
dtypes: Mapping[str, Any],
api_version: str | None = None,
) -> DataFrame:
...

Expand Down