raulcd commented on code in PR #41904: URL: https://github.com/apache/arrow/pull/41904#discussion_r1638021078
########## python/pyarrow/tests/util.py: ########## @@ -22,7 +22,10 @@ import contextlib import decimal import gc -import numpy as np +try: + import numpy as np +except ImportError: + pass Review Comment: I've done some cleanup here so we don't have to import here -- 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]
