Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Flatland
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elrichgro
Flatland
Commits
85f1d7d8
"dist/flatland_rl-3.0.5-py2.py3-none-any.whl" did not exist on "bd547bcc0ffb23ec014fdccc1d00a1885a310815"
Commit
85f1d7d8
authored
5 years ago
by
spmohanty
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
flatland/evaluators/aicrowd_helpers.py
+8
-1
8 additions, 1 deletion
flatland/evaluators/aicrowd_helpers.py
requirements_dev.txt
+0
-1
0 additions, 1 deletion
requirements_dev.txt
with
8 additions
and
2 deletions
flatland/evaluators/aicrowd_helpers.py
+
8
−
1
View file @
85f1d7d8
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
,
...
...
This diff is collapsed.
Click to expand it.
requirements_dev.txt
+
0
−
1
View file @
85f1d7d8
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment