You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by bh...@apache.org on 2020/12/28 18:44:11 UTC

[beam] branch master updated: [BEAM-11531] Restrict pandas version to <1.2.0 (#13623)

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

bhulette 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 593b576  [BEAM-11531] Restrict pandas version to <1.2.0 (#13623)
593b576 is described below

commit 593b576f653e64c22729bf688f61dabfc9a5f5b8
Author: Brian Hulette <bh...@google.com>
AuthorDate: Mon Dec 28 10:43:35 2020 -0800

    [BEAM-11531] Restrict pandas version to <1.2.0 (#13623)
---
 sdks/python/setup.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index f3351c5..059394a 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -165,7 +165,9 @@ REQUIRED_TEST_PACKAGES = [
     'freezegun>=0.3.12',
     'nose>=1.3.7',
     'nose_xunitmp>=0.4.1',
-    'pandas>=1.0,<2',
+    # TODO(BEAM-11531): Address test breakages in pandas 1.2
+    # 'pandas>=1.0,<2',
+    'pandas>=1.0,<1.2.0',
     'parameterized>=0.7.1,<0.8.0',
     'pyhamcrest>=1.9,!=1.10.0,<2.0.0',
     'pyyaml>=3.12,<6.0.0',