Skip to content

Commit 21be2c9

Browse files
committed
deprecate python 3.9, add 3.11 to CI
1 parent 98ed487 commit 21be2c9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ray_nightly_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ ubuntu-latest ]
34-
python-version: [3.10.14, 3.11, 3.12]
34+
python-version: [3.10.14, 3.11]
3535
spark-version: [4.0.0, 4.1.0]
3636

3737
runs-on: ${{ matrix.os }}

.github/workflows/raydp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
os: [ubuntu-latest]
35-
python-version: [3.10.14, 3.11, 3.12]
35+
python-version: [3.10.14, 3.11]
3636
spark-version: [4.0.0, 4.1.0]
3737
ray-version: [2.34.0, 2.40.0, 2.50.0]
3838

python/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,11 @@ def run(self):
133133
},
134134
install_requires=install_requires,
135135
setup_requires=["grpcio-tools"],
136-
python_requires='>=3.6',
136+
python_requires='>=3.10',
137137
classifiers=[
138138
'License :: OSI Approved :: Apache Software License',
139139
'Programming Language :: Python :: 3.10',
140140
'Programming Language :: Python :: 3.11',
141-
'Programming Language :: Python :: 3.12',
142141
]
143142
)
144143
finally:

0 commit comments

Comments
 (0)