Skip to content

Commit

Permalink
Merge pull request conda-forge#28839 from claytonparnell/add-sagemake…
Browse files Browse the repository at this point in the history
…r-core

Add recipe for sagemaker-core
  • Loading branch information
ocefpaf authored Jan 15, 2025
2 parents e3f0463 + 5d4c416 commit 9d06d1e
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions recipes/sagemaker-core/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "sagemaker-core" %}
{% set version = "1.0.17" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/sagemaker_core-{{ version }}.tar.gz
sha256: 607b5d2ecde33ad9a8af9273190bfccc9b903716cd2f3f65529845ceacd833a2

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

requirements:
host:
- python {{ python_min }}
- setuptools >=64
- pip
run:
- python >={{ python_min }}
- boto3 >=1.35.75,<2.0.0
- pydantic >=2.0.0,<3.0.0
- pyyaml >=6.0,<7.0
- jsonschema <5.0.0
- platformdirs >=4.0.0,<5.0.0
- rich >=13.0.0,<14.0.0
- mock >4.0,<5.0
- importlib-metadata <7.0,>=1.4.0

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

about:
home: https://github.com/aws/sagemaker-core/
summary: An python package for sagemaker core functionalities
license: Apache-2.0
license_file: LICENSE
license_family: APACHE
dev_url: https://github.com/aws/sagemaker-python-sdk/
doc_url: https://sagemaker-core.readthedocs.io/en/stable/

extra:
recipe-maintainers:
- claytonparnell
- benieric
- mufaddal-rohawala

0 comments on commit 9d06d1e

Please sign in to comment.