-
Notifications
You must be signed in to change notification settings - Fork 7k
[deps] upgrade lxml #58808
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
[deps] upgrade lxml #58808
Conversation
to latest version Signed-off-by: Lonnie Liu <lonnie@anyscale.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.
Code Review
This pull request upgrades the lxml dependency from version 4.9.4 to 6.0.2. This change is applied consistently across numerous lock files and requirement files to ensure compatibility with Python 3.13. The changes are straightforward dependency updates. I have one suggestion regarding the version specifier in python/requirements/test-requirements.txt to improve the reproducibility of test environments.
| kubernetes==24.2.0 | ||
| llvmlite==0.42.0 | ||
| lxml==4.9.4 | ||
| lxml>=6.0.2 |
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.
For better reproducibility of test environments, it is a good practice to pin dependency versions. Using >= could lead to different versions being installed in the future, potentially causing unexpected test failures. Pinning to ==6.0.2 ensures that the test environment remains consistent.
lxml==6.0.2
to latest version 6.0.2 4.9.4 does not work with python 3.13 Signed-off-by: Lonnie Liu <lonnie@anyscale.com> Signed-off-by: Aydin Abiar <aydin@anyscale.com>
to latest version 6.0.2 4.9.4 does not work with python 3.13 Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
to latest version 6.0.2 4.9.4 does not work with python 3.13 Signed-off-by: Lonnie Liu <lonnie@anyscale.com> Signed-off-by: YK <1811651+ykdojo@users.noreply.github.com>
to latest version 6.0.2 4.9.4 does not work with python 3.13 Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
to latest version 6.0.2
4.9.4 does not work with python 3.13