This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch maint-15.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 4f7819a743b0c1ff695ecfdbf75d8986bb6d35e1 Author: Joris Van den Bossche <[email protected]> AuthorDate: Thu Feb 1 14:54:14 2024 +0100 GH-39880: [Python][CI] Pin moto<5 for dask integration tests (#39881) See upstream pin being added (https://github.com/dask/dask/pull/10868 / https://github.com/dask/dask/issues/10869), we are seeing the same failures * Closes: #39880 Lead-authored-by: Joris Van den Bossche <[email protected]> Co-authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]> --- ci/scripts/install_dask.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/scripts/install_dask.sh b/ci/scripts/install_dask.sh index 8d712a88a6..478c1d5997 100755 --- a/ci/scripts/install_dask.sh +++ b/ci/scripts/install_dask.sh @@ -35,4 +35,5 @@ else fi # additional dependencies needed for dask's s3 tests -pip install moto[server] flask requests +# Moto 5 results in timeouts in s3 tests: https://github.com/dask/dask/issues/10869 +pip install "moto[server]<5" flask requests
