Skip to content

Commit

Permalink
[ci] remove 3.8 from ray supported python list (#45622)
Browse files Browse the repository at this point in the history
Notice that we haven't removed this support completely once I work on
upgrading python 3.12.

Need to change some runtime environment to `oss-ci-base_build` since
`forge` is using python 3.8.

Test:
- CI

Signed-off-by: can <[email protected]>
  • Loading branch information
can-anyscale committed May 30, 2024
1 parent 0bb2600 commit dd7cbee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .buildkite/lint.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ steps:
key: lint-medium
instance_type: medium
depends_on:
- forge
- oss-ci-base_build
commands:
- ./ci/lint/lint.sh {{matrix}}
job_env: oss-ci-base_build
matrix:
- api_annotations
- api_discrepancy
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

logger = logging.getLogger(__name__)

SUPPORTED_PYTHONS = [(3, 8), (3, 9), (3, 10), (3, 11)]
SUPPORTED_PYTHONS = [(3, 9), (3, 10), (3, 11)]
# When the bazel version is updated, make sure to update it
# in WORKSPACE file as well.

Expand Down

0 comments on commit dd7cbee

Please sign in to comment.