pyspark-connect 4.1.0.dev2__tar.gz → 4.1.0.dev4__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.
@@ -1,28 +1,29 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyspark-connect
3
- Version: 4.1.0.dev2
3
+ Version: 4.1.0.dev4
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
7
7
  Author-email: dev@spark.apache.org
8
8
  License: Apache-2.0
9
9
  Classifier: Development Status :: 5 - Production/Stable
10
- Classifier: Programming Language :: Python :: 3.9
11
10
  Classifier: Programming Language :: Python :: 3.10
12
11
  Classifier: Programming Language :: Python :: 3.11
13
12
  Classifier: Programming Language :: Python :: 3.12
14
13
  Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
15
  Classifier: Programming Language :: Python :: Implementation :: CPython
16
16
  Classifier: Programming Language :: Python :: Implementation :: PyPy
17
17
  Classifier: Typing :: Typed
18
- Requires-Python: >=3.9
18
+ Requires-Python: >=3.10
19
19
  Description-Content-Type: text/markdown
20
- Requires-Dist: pyspark==4.1.0.dev2
20
+ Requires-Dist: pyspark==4.1.0.dev4
21
21
  Requires-Dist: pandas>=2.0.0
22
22
  Requires-Dist: pyarrow>=11.0.0
23
- Requires-Dist: grpcio>=1.67.0
24
- Requires-Dist: grpcio-status>=1.67.0
25
- Requires-Dist: googleapis-common-protos>=1.65.0
23
+ Requires-Dist: grpcio>=1.76.0
24
+ Requires-Dist: grpcio-status>=1.76.0
25
+ Requires-Dist: googleapis-common-protos>=1.71.0
26
+ Requires-Dist: zstandard>=0.25.0
26
27
  Requires-Dist: numpy>=1.21
27
28
  Requires-Dist: pyyaml>=3.11
28
29
  Dynamic: author
@@ -0,0 +1 @@
1
+ __version__: str = '4.1.0.dev4'
@@ -1,28 +1,29 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyspark-connect
3
- Version: 4.1.0.dev2
3
+ Version: 4.1.0.dev4
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
7
7
  Author-email: dev@spark.apache.org
8
8
  License: Apache-2.0
9
9
  Classifier: Development Status :: 5 - Production/Stable
10
- Classifier: Programming Language :: Python :: 3.9
11
10
  Classifier: Programming Language :: Python :: 3.10
12
11
  Classifier: Programming Language :: Python :: 3.11
13
12
  Classifier: Programming Language :: Python :: 3.12
14
13
  Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
15
  Classifier: Programming Language :: Python :: Implementation :: CPython
16
16
  Classifier: Programming Language :: Python :: Implementation :: PyPy
17
17
  Classifier: Typing :: Typed
18
- Requires-Python: >=3.9
18
+ Requires-Python: >=3.10
19
19
  Description-Content-Type: text/markdown
20
- Requires-Dist: pyspark==4.1.0.dev2
20
+ Requires-Dist: pyspark==4.1.0.dev4
21
21
  Requires-Dist: pandas>=2.0.0
22
22
  Requires-Dist: pyarrow>=11.0.0
23
- Requires-Dist: grpcio>=1.67.0
24
- Requires-Dist: grpcio-status>=1.67.0
25
- Requires-Dist: googleapis-common-protos>=1.65.0
23
+ Requires-Dist: grpcio>=1.76.0
24
+ Requires-Dist: grpcio-status>=1.76.0
25
+ Requires-Dist: googleapis-common-protos>=1.71.0
26
+ Requires-Dist: zstandard>=0.25.0
26
27
  Requires-Dist: numpy>=1.21
27
28
  Requires-Dist: pyyaml>=3.11
28
29
  Dynamic: author
@@ -0,0 +1,9 @@
1
+ pyspark==4.1.0.dev4
2
+ pandas>=2.0.0
3
+ pyarrow>=11.0.0
4
+ grpcio>=1.76.0
5
+ grpcio-status>=1.76.0
6
+ googleapis-common-protos>=1.71.0
7
+ zstandard>=0.25.0
8
+ numpy>=1.21
9
+ pyyaml>=3.11
@@ -89,9 +89,10 @@ try:
89
89
  _minimum_pandas_version = "2.0.0"
90
90
  _minimum_numpy_version = "1.21"
91
91
  _minimum_pyarrow_version = "11.0.0"
92
- _minimum_grpc_version = "1.67.0"
93
- _minimum_googleapis_common_protos_version = "1.65.0"
92
+ _minimum_grpc_version = "1.76.0"
93
+ _minimum_googleapis_common_protos_version = "1.71.0"
94
94
  _minimum_pyyaml_version = "3.11"
95
+ _minimum_zstandard_version = "0.25.0"
95
96
 
96
97
  with open("README.md") as f:
97
98
  long_description = f.read()
@@ -121,17 +122,18 @@ try:
121
122
  "grpcio>=%s" % _minimum_grpc_version,
122
123
  "grpcio-status>=%s" % _minimum_grpc_version,
123
124
  "googleapis-common-protos>=%s" % _minimum_googleapis_common_protos_version,
125
+ "zstandard>=%s" % _minimum_zstandard_version,
124
126
  "numpy>=%s" % _minimum_numpy_version,
125
127
  "pyyaml>=%s" % _minimum_pyyaml_version,
126
128
  ],
127
- python_requires=">=3.9",
129
+ python_requires=">=3.10",
128
130
  classifiers=[
129
131
  "Development Status :: 5 - Production/Stable",
130
- "Programming Language :: Python :: 3.9",
131
132
  "Programming Language :: Python :: 3.10",
132
133
  "Programming Language :: Python :: 3.11",
133
134
  "Programming Language :: Python :: 3.12",
134
135
  "Programming Language :: Python :: 3.13",
136
+ "Programming Language :: Python :: 3.14",
135
137
  "Programming Language :: Python :: Implementation :: CPython",
136
138
  "Programming Language :: Python :: Implementation :: PyPy",
137
139
  "Typing :: Typed",
@@ -1 +0,0 @@
1
- __version__: str = '4.1.0.dev2'
@@ -1,8 +0,0 @@
1
- pyspark==4.1.0.dev2
2
- pandas>=2.0.0
3
- pyarrow>=11.0.0
4
- grpcio>=1.67.0
5
- grpcio-status>=1.67.0
6
- googleapis-common-protos>=1.65.0
7
- numpy>=1.21
8
- pyyaml>=3.11