From 3b64f139a52e9254815d5aaff13db16378fdea12 Mon Sep 17 00:00:00 2001 From: Brian O'Keefe Date: Tue, 12 Sep 2023 11:54:51 -0400 Subject: [PATCH] Update build.sh Pinning requests to 2.29.0 to avoid importing urllib3 2.0 and resolve the conflict with lack of support for that library in botocore to resolve Issues #330. --- neptune-python-utils/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neptune-python-utils/build.sh b/neptune-python-utils/build.sh index 39003e49..f22ae5ac 100755 --- a/neptune-python-utils/build.sh +++ b/neptune-python-utils/build.sh @@ -9,7 +9,7 @@ virtualenv temp --python=python3.8 source temp/bin/activate cd temp pip install gremlinpython==3.5.1 -pip install requests +pip install requests==2.29.0 pip install backoff pip install cchardet pip install aiodns @@ -23,4 +23,4 @@ zip -r neptune_python_utils.zip ./* -x "*pycache*" -x "*.so" -x "*dist-info*" -x mv neptune_python_utils.zip ../../../../target/neptune_python_utils.zip deactivate popd -rm -rf temp \ No newline at end of file +rm -rf temp