Skip to content

Commit

Permalink
Fix downstream CI (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
ogrisel committed May 20, 2022
1 parent f758eb3 commit 2fc334d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/testing.yml
Expand Up @@ -99,14 +99,14 @@ jobs:
if: "contains(github.event.pull_request.labels.*.name, 'ci distributed') || contains(github.event.pull_request.labels.*.name, 'ci downstream')"
env:
PROJECT: distributed
TEST_REQUIREMENTS: cryptography pytest pytest-asyncio<0.14.0 pytest-timeout pytest-rerunfailures numpy pandas mock bokeh fsspec>=0.3.3
TEST_REQUIREMENTS: cryptography pytest pytest-asyncio<0.14.0 pytest-timeout pytest-rerunfailures numpy pandas mock bokeh fsspec>=0.3.3 aiohttp pyarrow
PROJECT_URL: https://github.com/dask/distributed.git
strategy:
matrix:
python_version: [3.7]
python_version: ["3.10"]
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
Expand Down Expand Up @@ -135,10 +135,10 @@ jobs:
PROJECT_URL: https://github.com/joblib/joblib.git
strategy:
matrix:
python_version: [3.7]
python_version: ["3.10"]
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
Expand All @@ -163,10 +163,10 @@ jobs:
PROJECT_URL: https://github.com/joblib/loky.git
strategy:
matrix:
python_version: [3.7]
python_version: ["3.10"]
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
Expand All @@ -188,10 +188,10 @@ jobs:
PROJECT: ray
strategy:
matrix:
python_version: [3.8]
python_version: ["3.10"]
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
Expand All @@ -200,7 +200,7 @@ jobs:
python -m pip install --upgrade -r dev-requirements.txt
python -m pip install setproctitle psutil
# from https://docs.ray.io/en/master/development.html#building-ray
pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-2.0.0.dev0-cp38-cp38-manylinux2014_x86_64.whl
pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-2.0.0.dev0-cp310-cp310-manylinux2014_x86_64.whl
pushd ..
git clone https://github.com/ray-project/ray.git
pushd ray
Expand Down

0 comments on commit 2fc334d

Please sign in to comment.