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
2323pandas>=1.3.5,<1.5
2424scikit-learn==1.3.0
2525cloudpickle==2.2.1
26- scipy==1.10.1
27- urllib3>=1.26.8,<3.0.0
28- docker>=5.0.2,<7.0.0
2926PyYAML==6.0
30- pyspark==3.3.1
31- sagemaker-feature-store-pyspark-3.3
3227# TODO find workaround
3328xgboost>=1.6.2,<=1.7.6
3429pillow>=10.0.1,<=11
@@ -39,4 +34,3 @@ tritonclient[http]<2.37.0
3934onnx==1.14.1
4035# tf2onnx==1.15.1
4136nbformat>=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):
8585extras ["all" ] = [item for group in extras .values () for item in group ]
8686# Tests specific dependencies (do not need to be included in 'all')
8787test_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
8991if sys .version_info .minor != 10 :
9092 test_dependencies = [
You can’t perform that action at this time.
0 commit comments