damccorm commented on code in PR #39530:
URL: https://github.com/apache/beam/pull/39530#discussion_r3674267937


##########
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:
   ```suggestion
       'pyarrow>=14.0.1,<26.0.0',
   ```
   
   Any reason to stay above this (we can still get rid of the hotfix if we do 
this)?
   
   This is a common dependency, so if we can avoid being too restrictive it is 
probably helpful



-- 
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]

Reply via email to