We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7784105 commit ac8313eCopy full SHA for ac8313e
test/dlc_tests/sanity/test_pre_release.py
@@ -1078,6 +1078,9 @@ def test_license_file(image):
1078
framework, version = get_framework_and_version_from_tag(image)
1079
if framework == "autogluon":
1080
short_version = get_pytorch_version_from_autogluon_image(image)
1081
+ # Default to pytorch framework for autogluon since autogluon is built on top of pytorch
1082
+ # and uses the same license file structure in S3
1083
+ framework = "pytorch"
1084
else:
1085
short_version = re.search(r"(\d+\.\d+)", version).group(0)
1086
LICENSE_FILE_BUCKET = "aws-dlc-licenses"
0 commit comments