Skip to content

Commit 0c56c50

Browse files
committed
deprecate python 3.8
1 parent 6df6fd6 commit 0c56c50

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ray_nightly_test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
os: [ ubuntu-latest ]
3434
python-version: [3.9, 3.10.14]
3535
spark-version: [3.2.4, 3.3.2, 3.4.0, 3.5.0]
36-
ray-version: [2.34.0, 2.40.0]
3736

3837
runs-on: ${{ matrix.os }}
3938

@@ -84,10 +83,10 @@ jobs:
8483
fi
8584
case $PYTHON_VERSION in
8685
3.9)
87-
pip install "ray[train]==${{ matrix.ray-version }}"
86+
pip install "ray[train] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp39-cp39-manylinux2014_x86_64.whl"
8887
;;
8988
3.10.14)
90-
pip install "ray[train]==${{ matrix.ray-version }}"
89+
pip install "ray[train] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp310-cp310-manylinux2014_x86_64.whl"
9190
;;
9291
esac
9392
pip install pyarrow==6.0.1 pytest koalas tensorflow==2.13.1 tabulate grpcio-tools wget

.github/workflows/raydp.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
strategy:
3434
matrix:
3535
os: [ ubuntu-latest ]
36-
python-version: [3.8, 3.9, 3.10.14]
36+
python-version: [3.9, 3.10.14]
3737
spark-version: [3.2.4, 3.3.2, 3.4.0, 3.5.0]
38+
ray-version: [2.34.0, 2.40.0]
3839

3940
runs-on: ${{ matrix.os }}
4041

@@ -82,7 +83,7 @@ jobs:
8283
else
8384
pip install torch
8485
fi
85-
pip install pyarrow==6.0.1 ray[train] pytest tensorflow==2.13.1 tabulate grpcio-tools wget
86+
pip install pyarrow==6.0.1 "ray[train]==${{ matrix.ray-version }}" pytest tensorflow==2.13.1 tabulate grpcio-tools wget
8687
pip install "xgboost_ray[default]<=0.1.13"
8788
pip install "xgboost<=2.0.3"
8889
pip install torchmetrics

0 commit comments

Comments
 (0)