Skip to content

Commit

Permalink
Update qhub-dask version (#1224)
Browse files Browse the repository at this point in the history
  • Loading branch information
iameskild authored and iameskild committed Apr 5, 2022
1 parent 2c4d61e commit 8d174c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qhub/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from qhub.utils import (
namestr_regex,
qhub_image_tag,
qhub_dask_version,
check_cloud_credentials,
set_kubernetes_version,
)
Expand Down Expand Up @@ -212,7 +213,7 @@
"python",
"ipykernel",
"ipywidgets",
"qhub-dask ==0.3.13",
f"qhub-dask =={qhub_dask_version}",
"python-graphviz",
"numpy",
"numba",
Expand All @@ -226,7 +227,7 @@
"python==3.9.7",
"ipykernel==6.4.1",
"ipywidgets==7.6.5",
"qhub-dask==0.3.13",
f"qhub-dask=={qhub_dask_version}",
"param==1.11.1",
"python-graphviz==0.17",
"matplotlib==3.4.3",
Expand Down
1 change: 1 addition & 0 deletions qhub/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

qhub_image_tag = f"v{__version__}"
pip_install_qhub = f"pip install qhub=={__version__}"
qhub_dask_version = "0.4.0"

QHUB_GH_BRANCH = os.environ.get("QHUB_GH_BRANCH", "")
if QHUB_GH_BRANCH:
Expand Down

0 comments on commit 8d174c1

Please sign in to comment.