Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump qhub-dask version to 0.4.3 #1341

Merged
merged 4 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qhub/template/image/Dockerfile.dask-worker
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ RUN /opt/scripts/install-apt-minimal.sh

COPY scripts/fix-permissions /opt/scripts/fix-permissions

ENV CONDA_VERSION py37_4.10.3
ENV CONDA_SHA256 a1a7285dea0edc430b2bc7951d89bb30a2a1b32026d2a7b02aacaaa95cf69c7c
ENV CONDA_VERSION py38_4.10.3
ENV CONDA_SHA256 935d72deb16e42739d69644977290395561b7a6db059b316958d97939e9bdf3d
SHELL ["/bin/bash", "-c"]

ENV PATH=/opt/conda/bin:${PATH}:/opt/scripts
Expand Down
2 changes: 1 addition & 1 deletion qhub/template/image/dask-worker/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channels:
- conda-forge
dependencies:
# dask
- qhub-dask==0.3.13
- qhub-dask==0.4.3
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ variable "gateway-image" {
tag = string
})
default = {
name = "daskgateway/dask-gateway-server"
tag = "0.9.0"
name = "ghcr.io/dask/dask-gateway-server"
peytondmurray marked this conversation as resolved.
Show resolved Hide resolved
tag = "2022.4.0"
}
}

Expand All @@ -43,8 +43,8 @@ variable "controller-image" {
tag = string
})
default = {
name = "daskgateway/dask-gateway-server"
tag = "0.9.0"
name = "ghcr.io/dask/dask-gateway-server"
tag = "2022.4.0"
}
}

Expand All @@ -55,8 +55,8 @@ variable "cluster-image" {
tag = string
})
default = {
name = "daskgateway/dask-gateway"
tag = "0.9.0"
name = "ghcr.io/dask/dask-gateway"
tag = "2022.4.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion qhub/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

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

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