Skip to content

Commit b19ff13

Browse files
authored
Support 3.9/3.10 python (#22)
1 parent 6667cbf commit b19ff13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ubuntu_basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install bazel
1919
run: |
2020
apt-get update
21-
apt-get install -yq wget gcc g++ python3.7 zlib1g-dev zip libuv1.dev
21+
apt-get install -yq wget gcc g++ python3 zlib1g-dev zip libuv1.dev
2222
apt-get install -yq pip
2323
wget "https://github.com/bazelbuild/bazel/releases/download/5.1.0/bazel_5.1.0-linux-x86_64.deb" -O bazel_5.1.0-linux-x86_64.deb
2424
dpkg -i bazel_5.1.0-linux-x86_64.deb
@@ -30,7 +30,7 @@ jobs:
3030
. py3/bin/activate
3131
which python
3232
pip install pytest torch
33-
pip install ray==1.11.0
33+
pip install ray==1.13.0
3434
3535
- name: Build and test
3636
run: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
logger = logging.getLogger(__name__)
2424

25-
SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8)]
25+
SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8), (3, 9), (3, 10)]
2626
SUPPORTED_BAZEL = (3, 2, 0)
2727

2828
ROOT_DIR = os.path.dirname(__file__)

0 commit comments

Comments
 (0)