Skip to content
Snippets Groups Projects
Commit 85f1d7d8 authored by spmohanty's avatar spmohanty
Browse files

Remove boto3 as a dependency, and manually install it on the evaluator

parent f14ddb70
No related branches found
No related tags found
No related merge requests found
import os
import boto3
import uuid
import subprocess
import glob
......@@ -27,6 +26,14 @@ S3_UPLOAD_PATH_TEMPLATE = os.getenv("S3_UPLOAD_PATH_TEMPLATE", "misc/flatland-rl
def get_boto_client():
if not AWS_ACCESS_KEY_ID or not AWS_SECRET_ACCESS_KEY:
raise Exception("AWS Credentials not provided..")
try:
import boto3
except ImportError as e:
raise Exception(
"boto3 is not installed. Please manually install by : ",
" pip install -U boto3"
)
return boto3.client(
's3',
aws_access_key_id=AWS_ACCESS_KEY_ID,
......
......@@ -5,7 +5,6 @@ pytest>=3.8.2
pytest-runner>=4.2
Click>=7.0
crowdai-api>=0.1.21
boto3
numpy>=1.16.2
recordtype>=1.3
xarray>=0.11.3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment