aports/community/apache-arrow/python-warnings.patch

15 lines
557 B
Diff

they import warnings as _warnings then forget to use it
diff --git a/python/pyarrow/__init__.py b/python/pyarrow/__init__.py
index bcb6b30..86dc5fb 100644
--- a/python/pyarrow/__init__.py
+++ b/python/pyarrow/__init__.py
@@ -352,7 +352,7 @@ def _plasma_store_entry_point():
.. deprecated:: 10.0.0
Plasma is deprecated since Arrow 10.0.0. It will be removed in 12.0.0 or so.
"""
- warnings.warn(
+ _warnings.warn(
"Plasma is deprecated since Arrow 10.0.0. It will be removed in 12.0.0 or so.",
DeprecationWarning)