Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SageMaker Studio SDK and SageMaker Studio CLI recipes #29109

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions recipes/sagemaker-studio-cli/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{% set name = "sagemaker-studio-cli" %}
{% set version = "1.0.4" %}
{% set python_min = "3.11" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/sagemaker_studio_cli-{{ version }}.tar.gz
sha256: 9dafef119ca8c14f62bf3bd2ac58221c59dfded48094a3ab97455292306ad144

build:
entry_points:
- sagemaker-studio=sagemaker_studio_cli:sagemaker_studio
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- setuptools >=61
- wheel
- mypy
- invoke
- pip
run:
- python >={{ python_min }}
- click >=8.1.3
- sagemaker-studio >=1.0.0

test:
imports:
- sagemaker_studio_cli
commands:
- pip check
- sagemaker-studio --help
requires:
- pip
- python {{ python_min }}

about:
home: https://aws.amazon.com/sagemaker/
summary: CLI to interact with SageMaker Studio
license: Apache-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- tejaskash
- devanshdesai
- akashg105
56 changes: 56 additions & 0 deletions recipes/sagemaker-studio/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{% set name = "sagemaker-studio" %}
{% set version = "1.0.6" %}
{% set python_min = "3.11" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/sagemaker_studio-{{ version }}.tar.gz
sha256: 55328a26d662e8aec39a36c5079fb87a2e03340f617701d79d498e899741a065

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- setuptools >=61
- wheel
- mypy
- invoke
- pip
run:
- python >={{ python_min }}
- boto3 >=1.34.106
- botocore >=1.34.106
- urllib3 >=1.26.19
- requests >=2.25.1
- psutil >=5.9.8
- python-dateutil >=2.5.3
- setuptools >=21.0.0
- packaging >=24.0

test:
imports:
- sagemaker_studio
commands:
- pip check
requires:
- pip
- python {{ python_min }}

about:
home: https://aws.amazon.com/sagemaker/
summary: Python library to interact with Amazon SageMaker Unified Studio
license: Apache-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- tejaskash
- devanshdesai
- akashg105