-
Notifications
You must be signed in to change notification settings - Fork 21
Add api_version to constructors #233
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
Conversation
@@ -80,7 +80,7 @@ def column_from_sequence(sequence: Sequence[Any], *, dtype: Any, name: str = '', | |||
api_version: str | None | |||
A string representing the version of the dataframe API specification | |||
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. | |
in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
@@ -104,7 +104,7 @@ def dataframe_from_dict(data: Mapping[str, Column[Any]], *, api_version: str | N | |||
api_version: str | None | |||
A string representing the version of the dataframe API specification | |||
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. | |
in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
@@ -144,7 +144,7 @@ def column_from_1d_array(array: Any, *, dtype: Any, name: str = '', api_version: | |||
api_version: str | None | |||
A string representing the version of the dataframe API specification | |||
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. | |
in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
@@ -176,7 +176,7 @@ def dataframe_from_2d_array(array: Any, *, names: Sequence[str], dtypes: Mapping | |||
api_version: str | None | |||
A string representing the version of the dataframe API specification | |||
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to be returned, in ``'YYYY.MM'`` form, for example, ``'2023.04'``. | |
in ``'YYYY.MM'`` form, for example, ``'2023.04'``. |
thanks |
No description provided.