Skip to content

Commit 40a8cd4

Browse files
authored
Merge branch 'master' into dependabot
2 parents ec789ef + 327638e commit 40a8cd4

24 files changed

+1944
-394
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## v2.214.0 (2024-03-22)
4+
5+
### Features
6+
7+
* add support to ``clarify.py`` for time series explainability jobs
8+
9+
### Bug Fixes and Other Changes
10+
11+
* remove pytorch test for deprecated function
12+
* skip test_experiment_analytics to unblock release
13+
* Create workflow module scoped sagemaker_session to resolve test race condition
14+
* Simplify how we process test dependencies, which are supposed to include all extras.
15+
* skip failing feature store search integ test
16+
* skip failing pt test
17+
* list jumpstart models with invalid version strings
18+
* urge customers to install latest version
19+
320
## v2.213.0 (2024-03-15)
421

522
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.213.1.dev0
1+
2.214.1.dev0

requirements/extras/test_requirements.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,7 @@ pyvis==0.2.1
2323
pandas>=1.3.5,<1.5
2424
scikit-learn==1.3.0
2525
cloudpickle==2.2.1
26-
scipy==1.10.1
27-
urllib3>=1.26.8,<3.0.0
28-
docker>=5.0.2,<7.0.0
2926
PyYAML==6.0
30-
pyspark==3.3.1
31-
sagemaker-feature-store-pyspark-3.3
3227
# TODO find workaround
3328
xgboost>=1.6.2,<=1.7.6
3429
pillow>=10.0.1,<=11
@@ -39,4 +34,3 @@ tritonclient[http]<2.37.0
3934
onnx>=1.15.0
4035
# tf2onnx==1.15.1
4136
nbformat>=5.9,<6
42-
accelerate>=0.24.1,<=0.27.0

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ def read_requirements(filename):
8585
extras["all"] = [item for group in extras.values() for item in group]
8686
# Tests specific dependencies (do not need to be included in 'all')
8787
test_dependencies = read_requirements("requirements/extras/test_requirements.txt")
88+
# test dependencies are a superset of testing and extra dependencies
89+
test_dependencies.extend(extras["all"])
8890
# remove torch and torchvision if python version is not 3.10
8991
if sys.version_info.minor != 10:
9092
test_dependencies = [

0 commit comments

Comments
 (0)