Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Flatland
Flatland
Commits
ff2de1da
Commit
ff2de1da
authored
Jan 17, 2022
by
nimishsantosh107
Browse files
Bump version 3.0.11 → 3.0.12, get_submission_id helper updated to new evaluator
parent
a9651ac3
Pipeline
#9690
failed with stages
in 6 minutes and 48 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
dist/flatland_rl-3.0.1
1
-py2.py3-none-any.whl
→
dist/flatland_rl-3.0.1
2
-py2.py3-none-any.whl
View file @
ff2de1da
No preview for this file type
flatland/__init__.py
View file @
ff2de1da
...
...
@@ -4,4 +4,4 @@
__author__
=
"""S.P. Mohanty"""
__email__
=
'mohanty@aicrowd.com'
__version__
=
'3.0.1
1
'
__version__
=
'3.0.1
2
'
flatland/evaluators/aicrowd_helpers.py
View file @
ff2de1da
...
...
@@ -20,7 +20,7 @@ import pathlib
###############################################################
AWS_ACCESS_KEY_ID
=
os
.
getenv
(
"AWS_ACCESS_KEY_ID"
,
False
)
AWS_SECRET_ACCESS_KEY
=
os
.
getenv
(
"AWS_SECRET_ACCESS_KEY"
,
False
)
S3_UPLOAD_PATH_TEMPLATE
=
os
.
getenv
(
"S3_UPLOAD_PATH_TEMPLATE"
,
"misc/flatland-rl-Media/{}"
)
S3_UPLOAD_PATH_TEMPLATE
=
os
.
getenv
(
"S3_UPLOAD_PATH_TEMPLATE"
,
"misc/flatland-rl-Media/{}
.mp4
"
)
S3_BUCKET
=
os
.
getenv
(
"S3_BUCKET"
,
"aicrowd-production"
)
S3_BUCKET_ACL
=
"public-read"
if
S3_BUCKET
==
"aicrowd-production"
else
""
...
...
@@ -55,7 +55,7 @@ def is_grading():
def
get_submission_id
():
submission_id
=
os
.
getenv
(
"AICROWD_
EVALUATION_NAME"
,
f
"testflatland-3-T12345-XXXX"
).
split
(
'-'
)[
-
2
]
submission_id
=
os
.
getenv
(
"AICROWD_
SUBMISSION_ID"
,
"T12345"
)
return
submission_id
...
...
setup.cfg
View file @
ff2de1da
[bumpversion]
current_version = 3.0.1
1
current_version = 3.0.1
2
commit = True
tag = True
...
...
setup.py
View file @
ff2de1da
...
...
@@ -80,6 +80,6 @@ setup(
test_suite
=
'tests'
,
tests_require
=
test_requirements
,
url
=
'https://gitlab.aicrowd.com/flatland/flatland'
,
version
=
'3.0.1
1
'
,
version
=
'3.0.1
2
'
,
zip_safe
=
False
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment