-
Notifications
You must be signed in to change notification settings - Fork 60
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
feat: Deprecate load_data_frame #417
Conversation
pyproject.toml
Outdated
@@ -30,6 +30,7 @@ APScheduler = "*" | |||
redis = "*" | |||
dill = "*" | |||
backoff = "^2.2.1" | |||
typing-extensions = "^4.11.0" |
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.
please specify typing-extensions
with python version
ref:
https://python-poetry.org/docs/dependency-specification/#multiple-constraints-dependencies
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.
Thank you.
Changed to use built-in warnings.deprecated
with Python >= 3.13 on 8f9b3cd .
pyproject.toml
Outdated
@@ -43,7 +44,6 @@ fakeredis = "*" | |||
mypy = "*" | |||
types-redis = "*" | |||
matplotlib = "*" | |||
typing-extensions = "^4.11.0" |
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.
keep this line since this package is optional on production group
poetry.lock
Outdated
@@ -1,42 +1,41 @@ | |||
# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. | |||
# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. |
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.
Could you update poetry?
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.
fixed on ea7525b
Co-authored-by: Ryo Kitagawa <kitadrum50@gmail.com>
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.
LGTM!
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.
LGTM
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.
Looks good!
I fixed codes which is failed on CI. |
Thank you for the contribution!! |
Generic function
gokart.task.TaskOnKart.load
also supports loadingpandas.DataFrame
.Optional arguments
required_columns
anddrop_columns
are not necessary because you can verify/extract columns after loadingDataFrame
.