jrmccluskey commented on code in PR #39530: URL: https://github.com/apache/beam/pull/39530#discussion_r3674668670
########## sdks/python/setup.py: ########## @@ -150,11 +150,10 @@ def cythonize(*args, **kwargs): pyarrow_dependency = [''] else: pyarrow_dependency = [ - 'pyarrow>=6.0.1,<24.0.0', - # NOTE(https://github.com/apache/beam/issues/29392): We can remove this - # once Beam increases the pyarrow lower bound to a version that fixes CVE. - # (lower bound >= 14.0.1) - 'pyarrow-hotfix<1' + # Generally try to cover versions released in the last two years. + # Update python/sdks/tox.ini to cover the same pyarrow versions + # when updating the bounds here. + 'pyarrow>=17.0.0,<26.0.0', Review Comment: I went back and forth on bumping to 14.0.1 versus pushing further, the main consideration was that the stated window of versions we intend to test in tox.ini is releases in the last two calendar years. We didn't exactly _maintain_ that window over time, but it seemed like a pretty good cutoff. I'm okay with the wider bounds though, 14.0.1 isn't even three years old yet. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
