Skip to content

Commit

Permalink
[DF] Bump minimum dask version to 2022.08.1
Browse files Browse the repository at this point in the history
This is needed to avoid major bugs in dask, see
root-project#11515 for details.
  • Loading branch information
vepadulano committed Oct 12, 2022
1 parent eb1169b commit da416eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmake/modules/SearchInstalledSoftware.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2169,10 +2169,10 @@ if(test_distrdf_dask)
message(STATUS "Looking for Dask")

if(fail-on-missing)
find_package(Dask 2022.02 REQUIRED)
find_package(Dask 2022.08.1 REQUIRED)
else()

find_package(Dask 2022.02)
find_package(Dask 2022.08.1)
if(NOT Dask_FOUND)
message(STATUS "Switching OFF 'test_distrdf_dask' option")
set(test_distrdf_dask OFF CACHE BOOL "Disabled because Dask not found" FORCE)
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ metakernel>=0.20.0

# Distributed RDataFrame
pyspark>=2.4 # Spark backend
dask>=2022.02.0 # Dask backend
distributed>=2022.02.0 # Dask backend
dask>=2022.08.1 # Dask backend
distributed>=2022.08.1 # Dask backend

0 comments on commit da416eb

Please sign in to comment.