Skip to content

Commit

Permalink
Update build.sh
Browse files Browse the repository at this point in the history
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 awslabs#330.
  • Loading branch information
brianok-aws committed Sep 12, 2023
1 parent e3c5cef commit 3b64f13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neptune-python-utils/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
rm -rf temp

0 comments on commit 3b64f13

Please sign in to comment.