You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2019/10/01 18:17:05 UTC

[beam] branch master updated: [BEAM-6896] Loosen PyYAML dependency.

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

robertwb 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 698b111  [BEAM-6896] Loosen PyYAML dependency.
     new 0152c42  Merge pull request #9699 from robertwb/update-yaml
698b111 is described below

commit 698b111ee9603e2591f6eee27b953cb0d93b66aa
Author: Robert Bradshaw <ro...@gmail.com>
AuthorDate: Mon Sep 30 14:37:40 2019 -0700

    [BEAM-6896] Loosen PyYAML dependency.
    
    Also update this to be a test-only dependency, as it's only used for tests.
    
    There were no relevant API changes with the last major release.
---
 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 ee081bf..3e42485 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -126,7 +126,6 @@ REQUIRED_PACKAGES = [
     'pytz>=2018.3',
     # [BEAM-5628] Beam VCF IO is not supported in Python 3.
     'pyvcf>=0.6.8,<0.7.0; python_version < "3.0"',
-    'pyyaml>=3.12,<4.0.0',
     'typing>=3.6.0,<3.7.0; python_version < "3.5.0"',
     ]
 
@@ -143,6 +142,7 @@ REQUIRED_TEST_PACKAGES = [
     'pandas>=0.23.4,<0.25',
     'parameterized>=0.6.0,<0.7.0',
     'pyhamcrest>=1.9,<2.0',
+    'pyyaml>=3.12,<6.0.0',
     'tenacity>=5.0.2,<6.0',
     ]