pyspark-connect 4.2.0.dev1__tar.gz → 4.2.0.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/PKG-INFO +4 -4
- pyspark_connect-4.2.0.dev2/pyspark_connect/version.py +1 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/PKG-INFO +4 -4
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/requires.txt +3 -3
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/setup.py +2 -2
- pyspark_connect-4.2.0.dev1/pyspark_connect/version.py +0 -1
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/MANIFEST.in +0 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/README.md +0 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect/__init__.py +0 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/SOURCES.txt +0 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/dependency_links.txt +0 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/top_level.txt +0 -0
- {pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyspark-connect
|
|
3
|
-
Version: 4.2.0.
|
|
3
|
+
Version: 4.2.0.dev2
|
|
4
4
|
Summary: Apache Spark Python API with Spark Connect by default
|
|
5
5
|
Home-page: https://github.com/apache/spark/tree/master/python
|
|
6
6
|
Author: Spark Developers
|
|
@@ -17,9 +17,9 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
17
17
|
Classifier: Typing :: Typed
|
|
18
18
|
Requires-Python: >=3.10
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
|
-
Requires-Dist: pyspark==4.2.0.
|
|
21
|
-
Requires-Dist: pandas>=2.
|
|
22
|
-
Requires-Dist: pyarrow>=
|
|
20
|
+
Requires-Dist: pyspark==4.2.0.dev2
|
|
21
|
+
Requires-Dist: pandas>=2.2.0
|
|
22
|
+
Requires-Dist: pyarrow>=18.0.0
|
|
23
23
|
Requires-Dist: grpcio>=1.76.0
|
|
24
24
|
Requires-Dist: grpcio-status>=1.76.0
|
|
25
25
|
Requires-Dist: googleapis-common-protos>=1.71.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__: str = '4.2.0.dev2'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyspark-connect
|
|
3
|
-
Version: 4.2.0.
|
|
3
|
+
Version: 4.2.0.dev2
|
|
4
4
|
Summary: Apache Spark Python API with Spark Connect by default
|
|
5
5
|
Home-page: https://github.com/apache/spark/tree/master/python
|
|
6
6
|
Author: Spark Developers
|
|
@@ -17,9 +17,9 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
17
17
|
Classifier: Typing :: Typed
|
|
18
18
|
Requires-Python: >=3.10
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
|
-
Requires-Dist: pyspark==4.2.0.
|
|
21
|
-
Requires-Dist: pandas>=2.
|
|
22
|
-
Requires-Dist: pyarrow>=
|
|
20
|
+
Requires-Dist: pyspark==4.2.0.dev2
|
|
21
|
+
Requires-Dist: pandas>=2.2.0
|
|
22
|
+
Requires-Dist: pyarrow>=18.0.0
|
|
23
23
|
Requires-Dist: grpcio>=1.76.0
|
|
24
24
|
Requires-Dist: grpcio-status>=1.76.0
|
|
25
25
|
Requires-Dist: googleapis-common-protos>=1.71.0
|
|
@@ -86,9 +86,9 @@ try:
|
|
|
86
86
|
# binary format protocol with the Java version, see ARROW_HOME/format/* for specifications.
|
|
87
87
|
# Also don't forget to update python/docs/source/getting_started/install.rst,
|
|
88
88
|
# python/packaging/classic/setup.py, and python/packaging/client/setup.py
|
|
89
|
-
_minimum_pandas_version = "2.
|
|
89
|
+
_minimum_pandas_version = "2.2.0"
|
|
90
90
|
_minimum_numpy_version = "1.21"
|
|
91
|
-
_minimum_pyarrow_version = "
|
|
91
|
+
_minimum_pyarrow_version = "18.0.0"
|
|
92
92
|
_minimum_grpc_version = "1.76.0"
|
|
93
93
|
_minimum_googleapis_common_protos_version = "1.71.0"
|
|
94
94
|
_minimum_pyyaml_version = "3.11"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__: str = '4.2.0.dev1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{pyspark_connect-4.2.0.dev1 → pyspark_connect-4.2.0.dev2}/pyspark_connect.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|