From a8df0884bb956425ad076125e35ec889cc37e61b Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Fri, 2 Aug 2024 14:08:05 +0100 Subject: [PATCH 1/2] Unpin softprops/action-gh-release --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 311169f6..fc3ee239 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -120,7 +120,7 @@ jobs: needs: [publish-dockerhub] steps: - - uses: softprops/action-gh-release@v2.0.6 + - uses: softprops/action-gh-release@v2 name: Create release with: generate_release_notes: true From ca995546abef18044feb665ce537c29caecd5a22 Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Sun, 4 Aug 2024 14:10:38 +0100 Subject: [PATCH 2/2] Update packages to satisfy pip check --- stack/base/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stack/base/Dockerfile b/stack/base/Dockerfile index 99cbdad0..53a6dc31 100644 --- a/stack/base/Dockerfile +++ b/stack/base/Dockerfile @@ -45,14 +45,15 @@ ENV PIP_CONSTRAINT /opt/requirements.txt COPY pip.conf /etc/pip.conf # Upgrade pip and mamba to latest +# Update async_generator, certipy to satisfy `pip check` +# https://github.com/aiidalab/aiidalab-docker-stack/issues/490 # Install aiida-core and other shared requirements. -RUN mamba update -y pip && \ +RUN mamba update -y pip async_generator certipy && \ mamba install --yes \ aiida-core==${AIIDA_VERSION} \ mamba-bash-completion \ && mamba clean --all -f -y && \ - fix-permissions "${CONDA_DIR}" && \ - fix-permissions "/home/${NB_USER}" + fix-permissions "${CONDA_DIR}" # Enable verdi autocompletion. RUN mkdir -p "${CONDA_DIR}/etc/conda/activate.d" && \