[Release / Train] Fix Train tutorials#63225
Merged
matthewdeng merged 2 commits intoMay 8, 2026
Merged
Conversation
Signed-off-by: Mark Towers <mark@anyscale.com>
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates the pyarrow dependency to version 17.0.0 and performs extensive cleanup by removing unused imports across several Ray Train tutorial scripts. Feedback identifies a critical issue in 04d1_generative_cv_pattern.py where the removal of the Checkpoint import will result in a NameError during the training loop. Additionally, it is recommended to remove the datasets package from the installation list in 04c_time_series_workload_pattern.py as it is no longer utilized by the script.
Signed-off-by: Mark Towers <mark@anyscale.com>
chillCode404
pushed a commit
to chillCode404/ray-contrib
that referenced
this pull request
May 9, 2026
## Description `doc/source/train/tutorials` were raising an error that `ImportError: Dataset requires pyarrow >= 17.0.0, but 14.0.2 is installed. Reinstall with 'pip install -U "pyarrow"'.` Therefore, this PR fixes the tutorials by updating all pyarrows to 17.0.0 and at the same time removing unnecessary import statements --------- Signed-off-by: Mark Towers <mark@anyscale.com> Co-authored-by: Mark Towers <mark@anyscale.com>
dancingactor
pushed a commit
to dancingactor/ray
that referenced
this pull request
May 13, 2026
## Description `doc/source/train/tutorials` were raising an error that `ImportError: Dataset requires pyarrow >= 17.0.0, but 14.0.2 is installed. Reinstall with 'pip install -U "pyarrow"'.` Therefore, this PR fixes the tutorials by updating all pyarrows to 17.0.0 and at the same time removing unnecessary import statements --------- Signed-off-by: Mark Towers <mark@anyscale.com> Co-authored-by: Mark Towers <mark@anyscale.com>
am-kinetica
pushed a commit
to kineticadb/ray
that referenced
this pull request
May 14, 2026
## Description `doc/source/train/tutorials` were raising an error that `ImportError: Dataset requires pyarrow >= 17.0.0, but 14.0.2 is installed. Reinstall with 'pip install -U "pyarrow"'.` Therefore, this PR fixes the tutorials by updating all pyarrows to 17.0.0 and at the same time removing unnecessary import statements --------- Signed-off-by: Mark Towers <mark@anyscale.com> Co-authored-by: Mark Towers <mark@anyscale.com> Signed-off-by: anindyam1969 <amukherjee@kinetica.com>
Lucas61000
pushed a commit
to Lucas61000/ray
that referenced
this pull request
May 15, 2026
## Description `doc/source/train/tutorials` were raising an error that `ImportError: Dataset requires pyarrow >= 17.0.0, but 14.0.2 is installed. Reinstall with 'pip install -U "pyarrow"'.` Therefore, this PR fixes the tutorials by updating all pyarrows to 17.0.0 and at the same time removing unnecessary import statements --------- Signed-off-by: Mark Towers <mark@anyscale.com> Co-authored-by: Mark Towers <mark@anyscale.com>
alexandrplashchinsky
pushed a commit
to alexandrplashchinsky/ray-alex
that referenced
this pull request
May 29, 2026
## Description `doc/source/train/tutorials` were raising an error that `ImportError: Dataset requires pyarrow >= 17.0.0, but 14.0.2 is installed. Reinstall with 'pip install -U "pyarrow"'.` Therefore, this PR fixes the tutorials by updating all pyarrows to 17.0.0 and at the same time removing unnecessary import statements --------- Signed-off-by: Mark Towers <mark@anyscale.com> Co-authored-by: Mark Towers <mark@anyscale.com> Signed-off-by: Alexandr Plashchinsky <alexandr.plashchinsky@alexandrplashchinsky-H765G66H9V.local>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
doc/source/train/tutorialswere raising an error thatImportError: Dataset requires pyarrow >= 17.0.0, but 14.0.2 is installed. Reinstall with 'pip install -U "pyarrow"'.Therefore, this PR fixes the tutorials by updating all pyarrows to 17.0.0 and at the same time removing unnecessary import statements