pitrou commented on code in PR #41904: URL: https://github.com/apache/arrow/pull/41904#discussion_r1704151412
########## python/pyarrow/tests/interchange/test_conversion.py: ########## @@ -16,11 +16,16 @@ # under the License. from datetime import datetime as dt -import numpy as np import pyarrow as pa from pyarrow.vendored.version import Version import pytest +try: + import numpy as np +except ImportError: + pytest.skip(reason="Failures on test collection due to numpy NOT enabled", + allow_module_level=True) Review Comment: Perhaps open a GH issue to fix this, and reference it 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]
