Skip to content

Commit

Permalink
pinning click<8
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerket committed May 14, 2021
1 parent 0cbc193 commit d35397b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions buildstockbatch/aws/s3_assets/bootstrap-dask-custom
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ python=3.7 \
"pyarrow>=3.0.0" \
"s3fs>=0.4.2,<0.5.0" \
"numpy>=1.20.0" \
"click<8.0.0" # remove later
conda-pack \
tornado=5

Expand Down
2 changes: 1 addition & 1 deletion create_eagle_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ MY_CONDA_PREFIX="$CONDA_ENVS_DIR/$MY_CONDA_ENV_NAME"
echo "Creating $MY_CONDA_PREFIX"
module load conda
conda remove -y --prefix "$MY_CONDA_PREFIX" --all
conda create -y --prefix "$MY_CONDA_PREFIX" -c conda-forge "pyarrow>=3.0.0" python=3.7.8 "numpy>=1.20.0" "pandas>=1.0.0,!=1.0.4" dask distributed ruby
conda create -y --prefix "$MY_CONDA_PREFIX" -c conda-forge "pyarrow>=3.0.0" python=3.7.8 "numpy>=1.20.0" "pandas>=1.0.0,!=1.0.4" dask distributed ruby "click<8.0.0" # Remove click after this is fixed https://github.com/dask/distributed/issues/4817
source deactivate
source activate "$MY_CONDA_PREFIX"
which pip
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def run_tests(self):
'ruamel.yaml>=0.15.0',
'testfixtures',
'awsretry',
'click<8.0' # remove this after this bug is fixed in dask https://github.com/dask/distributed/issues/4817
],
extras_require={
'dev': [
Expand Down

0 comments on commit d35397b

Please sign in to comment.