Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/aws-step-functions-data-science-sdk-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: LucidtechAI/aws-step-functions-data-science-sdk-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
Loading
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.1.4
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
sagemaker>=2.1.0
boto3>=1.14.38
pyyaml
boto3<1.37.0
PyYAML>=6.0.0
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -30,9 +30,8 @@ def read_version():

# Declare minimal set for installation
required_packages = [
"sagemaker>=2.1.0",
"boto3>=1.14.38",
"pyyaml"
"boto3>=1.34.131",
"PyYAML~=6.0"
]

# enum is introduced in Python 3.4. Installing enum back port
1 change: 0 additions & 1 deletion src/stepfunctions/__init__.py
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@

from stepfunctions import steps
from stepfunctions import workflow
from stepfunctions import template
from stepfunctions.workflow.utils import CustomColorFormatter

def set_stream_logger(level=logging.INFO):
1 change: 0 additions & 1 deletion src/stepfunctions/steps/__init__.py
Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@

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