From f66ead3b0fbd68b2af2dc2505f375abda9184f32 Mon Sep 17 00:00:00 2001 From: ShiningZhang Date: Thu, 14 Oct 2021 15:18:07 +0800 Subject: [PATCH] fix: pyyaml < 6.0 because release/6.0 remove yaml.load() --- python/requirements.txt | 2 +- python/requirements_mac.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/requirements.txt b/python/requirements.txt index c28133c6..3dd93093 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -7,7 +7,7 @@ protobuf>=3.12.2 grpcio-tools>=1.28.1 grpcio>=1.28.1 func-timeout>=4.3.5 -pyyaml>=1.3.0 +pyyaml>=1.3.0, <6.0 flask>=1.1.2 click==7.1.2 itsdangerous==1.1.0 diff --git a/python/requirements_mac.txt b/python/requirements_mac.txt index b14fbd5f..fb289aea 100644 --- a/python/requirements_mac.txt +++ b/python/requirements_mac.txt @@ -6,7 +6,7 @@ google>=2.0.3 opencv-python==4.2.0.32 protobuf>=3.12.2 func-timeout>=4.3.5 -pyyaml>=1.3.0 +pyyaml>=1.3.0, <6.0 flask>=1.1.2 click==7.1.2 itsdangerous==1.1.0 -- GitLab