You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by tv...@apache.org on 2020/06/26 22:33:00 UTC

[beam] branch tvalentyn-patch-1 created (now 9311683)

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

tvalentyn pushed a change to branch tvalentyn-patch-1
in repository https://gitbox.apache.org/repos/asf/beam.git.


      at 9311683  [BEAM-10333] Adjusts lower bound for Pandas to a version that supports Py3.8.

This branch includes the following new commits:

     new 9311683  [BEAM-10333] Adjusts lower bound for Pandas to a version that supports Py3.8.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: [BEAM-10333] Adjusts lower bound for Pandas to a version that supports Py3.8.

Posted by tv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 93116834be300542bf9e12af5363f54369b65de4
Author: tvalentyn <tv...@users.noreply.github.com>
AuthorDate: Fri Jun 26 15:32:43 2020 -0700

    [BEAM-10333] Adjusts lower bound for Pandas to a version that supports Py3.8.
---
 sdks/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index 80a2407..e86b2f0 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -182,7 +182,7 @@ REQUIRED_TEST_PACKAGES = [
     'freezegun>=0.3.12',
     'nose>=1.3.7',
     'nose_xunitmp>=0.4.1',
-    'pandas>=0.23.4,<0.25',
+    'pandas>=0.25.2,<1',
     'parameterized>=0.7.1,<0.8.0',
     # pyhamcrest==1.10.0 doesn't work on Py2. Beam still supports Py2.
     # See: https://github.com/hamcrest/PyHamcrest/issues/131.