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 c1d1bd642d1 Fix a typo in skip condition. (#31267)
c1d1bd642d1 is described below

commit c1d1bd642d152f05ff5bcf64b4630e059c681ba7
Author: tvalentyn <tvalen...@users.noreply.github.com>
AuthorDate: Tue May 14 08:04:27 2024 -0700

    Fix a typo in skip condition. (#31267)
---
 sdks/python/apache_beam/dataframe/frames_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/apache_beam/dataframe/frames_test.py 
b/sdks/python/apache_beam/dataframe/frames_test.py
index b3ddfee95fc..076ab504add 100644
--- a/sdks/python/apache_beam/dataframe/frames_test.py
+++ b/sdks/python/apache_beam/dataframe/frames_test.py
@@ -1449,7 +1449,7 @@ class DeferredFrameTest(_AbstractFrameTest):
     self._run_test(lambda s: s.unstack(level=0), s)
 
   @unittest.skipIf(
-      sys.version_info >= (2, 12) and PD_VERSION < (2, 3),
+      sys.version_info >= (3, 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()

Reply via email to