Skip to content

[SPARK-52224][CONNECT][PYTHON] Introduce pyyaml as a dependency for the Python client #50944

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions dev/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ mlflow>=2.3.1
scikit-learn
matplotlib
memory-profiler>=0.61.0
pyyaml>=3.11

# PySpark test dependencies
unittest-xml-reporting
Expand Down
2 changes: 2 additions & 0 deletions python/packaging/classic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ def _supports_symlinks():
_minimum_pyarrow_version = "11.0.0"
_minimum_grpc_version = "1.67.0"
_minimum_googleapis_common_protos_version = "1.65.0"
_minimum_pyyaml_version = "3.11"


class InstallCommand(install):
Expand Down Expand Up @@ -365,6 +366,7 @@ def run(self):
"grpcio-status>=%s" % _minimum_grpc_version,
"googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version,
"numpy>=%s" % _minimum_numpy_version,
"pyyaml>=%s" % _minimum_pyyaml_version,
],
},
python_requires=">=3.9",
Expand Down
2 changes: 2 additions & 0 deletions python/packaging/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
_minimum_pyarrow_version = "11.0.0"
_minimum_grpc_version = "1.67.0"
_minimum_googleapis_common_protos_version = "1.65.0"
_minimum_pyyaml_version = "3.11"

with open("README.md") as f:
long_description = f.read()
Expand Down Expand Up @@ -209,6 +210,7 @@
"grpcio-status>=%s" % _minimum_grpc_version,
"googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version,
"numpy>=%s" % _minimum_numpy_version,
"pyyaml>=%s" % _minimum_pyyaml_version,
],
python_requires=">=3.9",
classifiers=[
Expand Down
2 changes: 2 additions & 0 deletions python/packaging/connect/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
_minimum_pyarrow_version = "11.0.0"
_minimum_grpc_version = "1.67.0"
_minimum_googleapis_common_protos_version = "1.65.0"
_minimum_pyyaml_version = "3.11"

with open("README.md") as f:
long_description = f.read()
Expand Down Expand Up @@ -121,6 +122,7 @@
"grpcio-status>=%s" % _minimum_grpc_version,
"googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version,
"numpy>=%s" % _minimum_numpy_version,
"pyyaml>=%s" % _minimum_pyyaml_version,
],
python_requires=">=3.9",
classifiers=[
Expand Down