Skip to content

Commit

Permalink
Merge branch 'main' into wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
jovany-wang committed Jan 19, 2024
2 parents 1957522 + b19ff13 commit 41b176f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install bazel
run: |
apt-get update
apt-get install -yq wget gcc g++ python3.7 zlib1g-dev zip libuv1.dev
apt-get install -yq wget gcc g++ python3 zlib1g-dev zip libuv1.dev
apt-get install -yq pip
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
dpkg -i bazel_5.1.0-linux-x86_64.deb
Expand All @@ -30,7 +30,7 @@ jobs:
. py3/bin/activate
which python
pip install pytest torch
pip install ray==1.11.0
pip install ray==1.13.0
- name: Build and test
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

logger = logging.getLogger(__name__)

SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8)]
SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8), (3, 9), (3, 10)]
SUPPORTED_BAZEL = (3, 2, 0)

ROOT_DIR = os.path.dirname(__file__)
Expand Down

0 comments on commit 41b176f

Please sign in to comment.