From 6f3d519324177fdcb6b35d8979d3815603d8ace0 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 20 May 2022 12:09:32 +0200 Subject: [PATCH 1/6] Empty commit From 20c5278ee2fc428f4c0c61b88a23f970e7600800 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 20 May 2022 13:22:03 +0200 Subject: [PATCH 2/6] Bump up Python version for downstream tests --- .github/workflows/testing.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 72c7d9ea..bc00535e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -103,10 +103,10 @@ jobs: 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 }} @@ -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 }} @@ -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 }} @@ -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 }} From 84d0c23bbe88e908a92759669db134207f6c82e8 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 20 May 2022 13:38:06 +0200 Subject: [PATCH 3/6] Quote version that is otherwise interpreted as a decimal number --- .github/workflows/testing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index bc00535e..cec82aa3 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -103,7 +103,7 @@ jobs: PROJECT_URL: https://github.com/dask/distributed.git strategy: matrix: - python_version: [3.10] + python_version: ["3.10"] steps: - uses: actions/checkout@v1 - name: Set up Python @@ -135,7 +135,7 @@ jobs: PROJECT_URL: https://github.com/joblib/joblib.git strategy: matrix: - python_version: [3.10] + python_version: ["3.10"] steps: - uses: actions/checkout@v1 - name: Set up Python @@ -163,7 +163,7 @@ jobs: PROJECT_URL: https://github.com/joblib/loky.git strategy: matrix: - python_version: [3.10] + python_version: ["3.10"] steps: - uses: actions/checkout@v1 - name: Set up Python @@ -188,7 +188,7 @@ jobs: PROJECT: ray strategy: matrix: - python_version: [3.10] + python_version: ["3.10"] steps: - uses: actions/checkout@v1 - name: Set up Python From 448e46ac9dd5633dec184ef2a177cab502eb35b6 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 20 May 2022 13:40:39 +0200 Subject: [PATCH 4/6] Add aiohttp to TEST_REQUIREMENTS for distributed --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index cec82aa3..fc8f4d43 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -99,7 +99,7 @@ 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 PROJECT_URL: https://github.com/dask/distributed.git strategy: matrix: From 9c0691c9312c0a19f4fa03d8e799e26bec7d4d71 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 20 May 2022 13:46:24 +0200 Subject: [PATCH 5/6] Use the 3.10 dev wheel for ray --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index fc8f4d43..5bdf7b23 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -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 From 72b6f612c29c590105e727ab57a15da4395196d4 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 20 May 2022 14:13:27 +0200 Subject: [PATCH 6/6] add pyarrow --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 5bdf7b23..925aa306 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -99,7 +99,7 @@ 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 aiohttp + 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: