Skip to content
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
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
cdt_name:
- cos7
- conda
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
- quay.io/condaforge/linux-anvil-x86_64:alma9
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.12.* *_cpython
python_min:
- '3.9'
16 changes: 9 additions & 7 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 27 additions & 2 deletions azure-pipelines.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
bot:
automerge: true
inspection: update-grayskull
build_platform:
osx_arm64: osx_64
conda_forge_output_validation: true
Expand Down
26 changes: 16 additions & 10 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "sagemaker-python-sdk" %}
{% set version = "2.228.0" %}
{% set version = "2.237.3" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/sagemaker/sagemaker-{{ version }}.tar.gz
sha256: 67632d5376abfa0e324bd1c7039b744a93e44af96dbbac507a3a94c734eff671
url: https://pypi.org/packages/source/{{ name[0] }}/sagemaker/sagemaker-{{ version }}.tar.gz
sha256: 3193e4fe89087959aca9b037a3659dce437a5f27f3bf750faba20b21f05e6e66

build:
entry_points:
Expand All @@ -18,29 +18,34 @@ build:

requirements:
host:
- python >=3.8
- python {{ python_min }}
- pip
- setuptools
- hatchling
run:
- python >=3.8
- python >={{ python_min }}
- sagemaker-core >=1.0.17,<2.0.0
- attrs >=23.1.0,<24
- boto3 >=1.26.131,<2.0
- cloudpickle ==2.2.1
- boto3 >=1.35.75,<2.0
- cloudpickle >=2.2.1
- google-pasta
- numpy >=1.9.0,<2.0
- protobuf >=3.12,<5.0
- protobuf >=3.12,<6.0
- omegaconf >=2.2,<2.3
- smdebug-rulesconfig ==1.0.1
- importlib-metadata >=1.4.0,<7.0
- packaging >=20.0
- pandas
- smdebug-rulesconfig ==1.0.1
- fastapi
- pathos
- schema
- pyyaml ~=6.0
- jsonschema
- platformdirs
- tblib >=1.7.0,<3
- urllib3 <1.27
- tblib >=1.7.0,<4
- urllib3 >=1.26.8,<3.0.0
- uvicorn
- requests
- docker-py
- tqdm
Expand Down Expand Up @@ -76,6 +81,7 @@ test:
- sagemaker-upgrade-v2 --help
requires:
- pip
- python {{ python_min }}

about:
home: https://github.com/aws/sagemaker-python-sdk/
Expand Down