Skip to content

Commit

Permalink
Fixes wrong limit for dask for python>3.7 (should be <3.7) (#15545)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Apr 27, 2021
1 parent 4b031d3 commit e4deb0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def get_sphinx_theme_version() -> str:
]
dask = [
'cloudpickle>=1.4.1, <1.5.0',
'dask<2021.3.1;python_version>"3.7"', # dask stopped supporting python 3.6 in 2021.3.1 version
'dask<2021.3.1;python_version<"3.7"', # dask stopped supporting python 3.6 in 2021.3.1 version
'dask>=2.9.0;python_version>="3.7"',
'distributed>=2.11.1, <2.20',
]
Expand Down

0 comments on commit e4deb0f

Please sign in to comment.