Skip to content

Commit

Permalink
fix: pin click to workaround unknown py37 failure
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Apr 5, 2022
1 parent 9bf91d4 commit b8d57a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dask-gateway/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
# in ../dev-environment.yaml
install_requires = [
"aiohttp",
# FIXME: click 8.0.4 works, but 8.1.0-8.1.2 has found to cause failures for
# currently unknown reasons.
#
# This is tracked in https://github.com/dask/dask-gateway/issues/522.
#
"click == 8.0.4",
"dask >= 2.2.0",
"distributed >= 2.2.0",
"pyyaml",
Expand Down
1 change: 1 addition & 0 deletions dev-environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies:
# - dask-gateway/setup.py
# - dask-gateway-server/setup.py
- aiohttp # dask-gateway, dask-gateway-server
- click # dask-gateway
- dask # dask-gateway
- distributed # dask-gateway
- pyyaml # dask-gateway
Expand Down

0 comments on commit b8d57a8

Please sign in to comment.