Skip to content

Commit

Permalink
Merge pull request #4 from jaipreet-s/master
Browse files Browse the repository at this point in the history
Add compatibility with SageMaker SDK v2
  • Loading branch information
jaipreet-s authored Oct 30, 2020
2 parents 464e83f + 82e3d7d commit e6ce9cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ From a "System Terminal" in SageMaker Studio
```bash
export DEV_S3_PATH_PREFIX=s3://path/to/location
aws s3 sync ${DEV_S3_PATH_PREFIX}/sagemaker-docker-build/dist .
pip install sagemaker-docker-build-x.y.tar.gz
pip install sagemaker_studio_image_build-x.y.z.tar.gz
```
## Security
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
with open("README.md", "r") as fh:
long_description = fh.read()

required_packages = ["boto3>=1.10.44, < 2.0", "sagemaker < 2.0"]
required_packages = ["boto3>=1.10.44, < 2.0", "sagemaker < 3.0"]

setuptools.setup(
name="sagemaker_studio_image_build",
version="0.3.1",
version="0.4.0",
author="Amazon Web Services",
description="Build Docker Images in Amazon SageMaker Studio using AWS CodeBuild",
long_description=long_description,
Expand All @@ -20,7 +20,6 @@
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
Expand Down

0 comments on commit e6ce9cd

Please sign in to comment.