jorisvandenbossche commented on code in PR #41904: URL: https://github.com/apache/arrow/pull/41904#discussion_r1705035106
########## 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: Looking at the file here, it seems the actual parametrization using numpy are just float32/float64 dtypes, and those could easily be converted to strings -- 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]
