File tree 4 files changed +7
-0
lines changed
4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ mlflow>=2.3.1
12
12
scikit-learn
13
13
matplotlib
14
14
memory-profiler >= 0.61.0
15
+ pyyaml >= 3.11
15
16
16
17
# PySpark test dependencies
17
18
unittest-xml-reporting
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ def _supports_symlinks():
155
155
_minimum_pyarrow_version = "11.0.0"
156
156
_minimum_grpc_version = "1.67.0"
157
157
_minimum_googleapis_common_protos_version = "1.65.0"
158
+ _minimum_pyyaml_version = "3.11"
158
159
159
160
160
161
class InstallCommand (install ):
@@ -365,6 +366,7 @@ def run(self):
365
366
"grpcio-status>=%s" % _minimum_grpc_version ,
366
367
"googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version ,
367
368
"numpy>=%s" % _minimum_numpy_version ,
369
+ "pyyaml>=%s" % _minimum_pyyaml_version ,
368
370
],
369
371
},
370
372
python_requires = ">=3.9" ,
Original file line number Diff line number Diff line change 137
137
_minimum_pyarrow_version = "11.0.0"
138
138
_minimum_grpc_version = "1.67.0"
139
139
_minimum_googleapis_common_protos_version = "1.65.0"
140
+ _minimum_pyyaml_version = "3.11"
140
141
141
142
with open ("README.md" ) as f :
142
143
long_description = f .read ()
209
210
"grpcio-status>=%s" % _minimum_grpc_version ,
210
211
"googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version ,
211
212
"numpy>=%s" % _minimum_numpy_version ,
213
+ "pyyaml>=%s" % _minimum_pyyaml_version ,
212
214
],
213
215
python_requires = ">=3.9" ,
214
216
classifiers = [
Original file line number Diff line number Diff line change 91
91
_minimum_pyarrow_version = "11.0.0"
92
92
_minimum_grpc_version = "1.67.0"
93
93
_minimum_googleapis_common_protos_version = "1.65.0"
94
+ _minimum_pyyaml_version = "3.11"
94
95
95
96
with open ("README.md" ) as f :
96
97
long_description = f .read ()
121
122
"grpcio-status>=%s" % _minimum_grpc_version ,
122
123
"googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version ,
123
124
"numpy>=%s" % _minimum_numpy_version ,
125
+ "pyyaml>=%s" % _minimum_pyyaml_version ,
124
126
],
125
127
python_requires = ">=3.9" ,
126
128
classifiers = [
You can’t perform that action at this time.
0 commit comments