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

Feat/rebase master #4498

Merged
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2b29f86
prepare release v2.210.0
Feb 28, 2024
c6e93f9
update development version to v2.210.1.dev0
Feb 28, 2024
2f1bed0
feat: Add new Triton DLC URIs (#4432)
nikhil-sk Feb 28, 2024
bb48c73
feat: Support selective pipeline execution between function step and …
qidewenwhen Feb 29, 2024
c4d6c65
feat: Add AutoMLV2 support (#4461)
repushko Mar 1, 2024
b4a726f
feature: Add TensorFlow 2.14 image configs (#4446)
saimidu Mar 1, 2024
00327fc
fix: remove enable_network_isolation from the python doc (#4465)
rohangujarathi Mar 1, 2024
4e5155c
doc: Add doc for new feature processor APIs and classes (#4250)
can-sun Mar 1, 2024
ac4e861
fix: properly close sagemaker config file after loading config (#4457)
jmahlik Mar 4, 2024
b857ead
feat: instance specific jumpstart host requirements (#4397)
evakravi Mar 4, 2024
72fd0fa
change: Bump Apache Airflow version to 2.8.2 (#4470)
knikure Mar 4, 2024
892ba38
fix: make sure gpus are found in local_gpu run (#4384)
gverkes Mar 4, 2024
9a26978
feat: pin dll version to support python3.11 to the sdk (#4472)
akrishna1995 Mar 4, 2024
69a9fcd
fix: Skip No Canvas regions for test_deploy_best_candidate (#4477)
knikure Mar 5, 2024
0a48a8a
prepare release v2.211.0
Mar 5, 2024
8036ad3
update development version to v2.211.1.dev0
Mar 5, 2024
55940ad
change: Enhance model builder selection logic to include model size (…
samruds Mar 6, 2024
45a471f
change: Upgrade smp to version 2.2 (#4479)
adtian2 Mar 6, 2024
b426c21
feat: Update SM Python SDK for PT 2.2.0 SM DLC (#4481)
sirutBuasai Mar 6, 2024
7000f25
fix: Create custom tarfile extractall util to fix backward compatibil…
knikure Mar 6, 2024
48d501f
prepare release v2.212.0
Mar 6, 2024
4c8e0fc
update development version to v2.212.1.dev0
Mar 6, 2024
65f2ddf
change: Update tblib constraint (#4452)
dbushy727 Mar 7, 2024
3e9e04d
fix: make unit tests compatible with pytest-xdist (#4486)
benieric Mar 7, 2024
554d720
feature: Add overriding logic in ModelBuilder when task is provided (…
xiongz945 Mar 8, 2024
28a1665
feature: Accept user-defined env variables for the entry-point (#4175)
martinRenou Mar 8, 2024
c8f78f7
fix: Move sagemaker pysdk version check after bootstrap in remote job…
qidewenwhen Mar 11, 2024
f9fb1b9
change: enable github actions for PRs (#4489)
benieric Mar 12, 2024
e95ed65
feature: Add ModelDataSource and SourceUri support for model package …
mrudulmn Mar 12, 2024
525e9ae
feat: support JumpStart proprietary models (#4467)
Captainia Mar 12, 2024
95780d3
chore: emit warning when no instance specific gated training env var …
evakravi Mar 13, 2024
2d638eb
change: bump jinja2 to 3.1.3 in doc/requirments.txt (#4421) (#4423)
evakravi Feb 16, 2024
29718b4
feat: add hub and hubcontent support in retrieval function for jumpst…
bencrabtree Feb 21, 2024
d7c4307
feat: jsch jumpstart estimator support (#4439)
bencrabtree Feb 26, 2024
92e35c8
Master jumpstart curated hub (#4464)
bencrabtree Feb 28, 2024
d2f72a2
add hub_arn support for accept_types, content_types, serializers, des…
bencrabtree Feb 28, 2024
52eae82
feature: JumpStart CuratedHub class creation and function definitions…
jinyoung-lim Feb 29, 2024
c450168
MultiPartCopy with Sync Algorithm (#4475)
bencrabtree Mar 12, 2024
da1b642
rebase with master
bencrabtree Mar 13, 2024
709bedc
bad rebase
bencrabtree Mar 13, 2024
d2dd9be
trying to fix codecov
bencrabtree Mar 15, 2024
fa6a3ba
uncomment codebuild-ci
bencrabtree Mar 15, 2024
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
Prev Previous commit
Next Next commit
feat: pin dll version to support python3.11 to the sdk (#4472)
Co-authored-by: Ashwin Krishna <ashwikri@amazon.com>
  • Loading branch information
2 people authored and bencrabtree committed Mar 13, 2024
commit 9a26978207d0181252cb30e072845c7f3aa3d5a4
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py38,py39,py310
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py38,py39,py310,py311

skip_missing_interpreters = False

@@ -84,12 +84,13 @@ commands =
pip install 'apache-airflow==2.8.2' --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.8.2/constraints-3.8.txt"
pip install 'torch==2.0.1+cpu' -f 'https://download.pytorch.org/whl/torch_stable.html'
pip install 'torchvision==0.15.2+cpu' -f 'https://download.pytorch.org/whl/torch_stable.html'
pip install 'dill>=0.3.8'

pytest --cov=sagemaker --cov-append {posargs}
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86
deps = .[test]
depends =
{py38,py39,py310}: clean
{py38,py39,py310,p311}: clean

[testenv:flake8]
skipdist = true