Skip to content

Commit af75080

Browse files
authored
Release 2.237.3, allow grayskull updates, relax cloudpickle pin
1 parent 2d83156 commit af75080

File tree

7 files changed

+75
-23
lines changed

7 files changed

+75
-23
lines changed

.azure-pipelines/azure-pipelines-linux.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.ci_support/linux_64_.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
cdt_name:
2-
- cos7
2+
- conda
33
channel_sources:
44
- conda-forge
55
channel_targets:
66
- conda-forge main
77
docker_image:
8-
- quay.io/condaforge/linux-anvil-cos7-x86_64
8+
- quay.io/condaforge/linux-anvil-x86_64:alma9
9+
pin_run_as_build:
10+
python:
11+
min_pin: x.x
12+
max_pin: x.x
13+
python:
14+
- 3.12.* *_cpython
15+
python_min:
16+
- '3.9'

.scripts/build_steps.sh

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

azure-pipelines.yml

Lines changed: 27 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build-locally.py

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

conda-forge.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
bot:
22
automerge: true
3+
inspection: update-grayskull
34
build_platform:
45
osx_arm64: osx_64
56
conda_forge_output_validation: true

recipe/meta.yaml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% set name = "sagemaker-python-sdk" %}
2-
{% set version = "2.228.0" %}
2+
{% set version = "2.237.3" %}
33

44
package:
55
name: {{ name|lower }}
66
version: {{ version }}
77

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

1212
build:
1313
entry_points:
@@ -18,29 +18,34 @@ build:
1818

1919
requirements:
2020
host:
21-
- python >=3.8
21+
- python {{ python_min }}
2222
- pip
2323
- setuptools
2424
- hatchling
2525
run:
26-
- python >=3.8
26+
- python >={{ python_min }}
27+
- sagemaker-core >=1.0.17,<2.0.0
2728
- attrs >=23.1.0,<24
28-
- boto3 >=1.26.131,<2.0
29-
- cloudpickle ==2.2.1
29+
- boto3 >=1.35.75,<2.0
30+
- cloudpickle >=2.2.1
3031
- google-pasta
3132
- numpy >=1.9.0,<2.0
32-
- protobuf >=3.12,<5.0
33+
- protobuf >=3.12,<6.0
34+
- omegaconf >=2.2,<2.3
3335
- smdebug-rulesconfig ==1.0.1
3436
- importlib-metadata >=1.4.0,<7.0
3537
- packaging >=20.0
3638
- pandas
39+
- smdebug-rulesconfig ==1.0.1
40+
- fastapi
3741
- pathos
3842
- schema
3943
- pyyaml ~=6.0
4044
- jsonschema
4145
- platformdirs
42-
- tblib >=1.7.0,<3
43-
- urllib3 <1.27
46+
- tblib >=1.7.0,<4
47+
- urllib3 >=1.26.8,<3.0.0
48+
- uvicorn
4449
- requests
4550
- docker-py
4651
- tqdm
@@ -76,6 +81,7 @@ test:
7681
- sagemaker-upgrade-v2 --help
7782
requires:
7883
- pip
84+
- python {{ python_min }}
7985

8086
about:
8187
home: https://github.com/aws/sagemaker-python-sdk/

0 commit comments

Comments
 (0)