File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,7 @@ pyvis==0.2.1
23
23
pandas>=1.3.5,<1.5
24
24
scikit-learn==1.3.0
25
25
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
29
26
PyYAML==6.0
30
- pyspark==3.3.1
31
- sagemaker-feature-store-pyspark-3.3
32
27
# TODO find workaround
33
28
xgboost>=1.6.2,<=1.7.6
34
29
pillow>=10.0.1,<=11
@@ -39,4 +34,3 @@ tritonclient[http]<2.37.0
39
34
onnx==1.14.1
40
35
# tf2onnx==1.15.1
41
36
nbformat>=5.9,<6
42
- accelerate>=0.24.1,<=0.27.0
Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ def read_requirements(filename):
85
85
extras ["all" ] = [item for group in extras .values () for item in group ]
86
86
# Tests specific dependencies (do not need to be included in 'all')
87
87
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" ])
88
90
# remove torch and torchvision if python version is not 3.10
89
91
if sys .version_info .minor != 10 :
90
92
test_dependencies = [
You can’t perform that action at this time.
0 commit comments