This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch back-to-requests-2.71.1 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit d542b9e9a1ab028c0eda594180731f4c779014d2 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Tue May 23 12:19:40 2023 -0400 Revert "Bump requests from 2.27.1 to 2.31.0 in /src/mango" This reverts commit a4bad8d8e93eaa93a56465a082524f18fd736178. Unfortunately 2.27.1 is the highest support version for python 3 on Ubuntu 18 and CentOS 7 workers. This is for a localhost CI test only and not part of our release artifact. --- src/mango/requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mango/requirements.txt b/src/mango/requirements.txt index d37f763fa..e63cbdde7 100644 --- a/src/mango/requirements.txt +++ b/src/mango/requirements.txt @@ -1,4 +1,5 @@ nose2==0.11.0 -requests==2.31.0 +# requests 2.27.1 is the highest supported version +# on ubuntu 18 and centos 7 CI workers +requests==2.27.1 hypothesis==6.31.6 -
