Skip to content

Commit da29cfa

Browse files
authored
Merge pull request #1 from aws/master
merge from base repo
2 parents b9b0371 + 08a0ed7 commit da29cfa

21 files changed

+607
-133
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ Supported Python Versions
104104

105105
The AWS Step Functions Data Science SDK is tested on:
106106

107-
* Python 2.7
108107
* Python 3.6
109108

110109
Overview of SDK

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.1
1+
2.0.0-rc1

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __getattr__(cls, name):
9494
htmlhelp_basename = "%sdoc" % project
9595

9696
intersphinx_mapping = {
97-
"https://docs.python.org/2.7/": None,
97+
"https://docs.python.org/3.6/": None,
9898
"https://boto3.readthedocs.io/en/latest": None,
9999
"https://sagemaker.readthedocs.io/en/stable": None,
100100
}

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
sagemaker>=1.71.0,<2.0.0
2-
boto3>=1.9.213
1+
sagemaker>=2.1.0
2+
boto3>=1.14.38
33
pyyaml

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def read_version():
3030

3131
# Declare minimal set for installation
3232
required_packages = [
33-
"sagemaker>=1.71.0,<2.0.0",
34-
"boto3>=1.9.213",
33+
"sagemaker>=2.1.0",
34+
"boto3>=1.14.38",
3535
"pyyaml"
3636
]
3737

@@ -56,7 +56,6 @@ def read_version():
5656
"Natural Language :: English",
5757
"License :: OSI Approved :: Apache Software License",
5858
"Programming Language :: Python",
59-
"Programming Language :: Python :: 2.7",
6059
"Programming Language :: Python :: 3.6",
6160
],
6261
install_requires=required_packages,

src/stepfunctions/steps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from stepfunctions.steps.states import Pass, Succeed, Fail, Wait, Choice, Parallel, Map, Task, Chain, Retry, Catch
1818
from stepfunctions.steps.states import Graph, FrozenGraph
19-
from stepfunctions.steps.sagemaker import TrainingStep, TransformStep, ModelStep, EndpointConfigStep, EndpointStep, ProcessingStep
19+
from stepfunctions.steps.sagemaker import TrainingStep, TransformStep, ModelStep, EndpointConfigStep, EndpointStep, TuningStep, ProcessingStep
2020
from stepfunctions.steps.compute import LambdaStep, BatchSubmitJobStep, GlueStartJobRunStep, EcsRunTaskStep
2121
from stepfunctions.steps.service import DynamoDBGetItemStep, DynamoDBPutItemStep, DynamoDBUpdateItemStep, DynamoDBDeleteItemStep
2222
from stepfunctions.steps.service import SnsPublishStep, SqsSendMessageStep

0 commit comments

Comments
 (0)