This is an automated email from the ASF dual-hosted git repository.

tvalentyn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ee63c0e04e Exclude a test that doesn't pass due to an upstream issue. 
(#31240)
5ee63c0e04e is described below

commit 5ee63c0e04e433388943922b1578fa16fea0aaa4
Author: tvalentyn <tvalen...@users.noreply.github.com>
AuthorDate: Fri May 10 09:00:10 2024 -0700

    Exclude a test that doesn't pass due to an upstream issue. (#31240)
---
 sdks/python/apache_beam/dataframe/frames_test.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sdks/python/apache_beam/dataframe/frames_test.py 
b/sdks/python/apache_beam/dataframe/frames_test.py
index 3ee9adc2bfe..b3ddfee95fc 100644
--- a/sdks/python/apache_beam/dataframe/frames_test.py
+++ b/sdks/python/apache_beam/dataframe/frames_test.py
@@ -15,6 +15,7 @@
 # limitations under the License.
 
 import re
+import sys
 import unittest
 import warnings
 from typing import Dict
@@ -1447,6 +1448,9 @@ class DeferredFrameTest(_AbstractFrameTest):
     s = pd.Series(np.arange(1.0, 5.0), index=index)
     self._run_test(lambda s: s.unstack(level=0), s)
 
+  @unittest.skipIf(
+      sys.version_info >= (2, 12) and PD_VERSION < (2, 3),
+      'https://github.com/pandas-dev/pandas/issues/58604')
   def test_unstack_pandas_example3(self):
     index = self._unstack_get_categorical_index()
     s = pd.Series(np.arange(1.0, 5.0), index=index)

Reply via email to