Skip to content

Commit

Permalink
Install setuptools==69.0.0 to fix issue with nbgrader
Browse files Browse the repository at this point in the history
  • Loading branch information
briank-git committed Aug 16, 2024
1 parent 90a4ba6 commit 8426080
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dockerfiles/r-stat-301/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ RUN mamba update --quiet --file /tmp/conda-linux-64.lock && \
Rscript -e "lib <- 'moderndive'; install.packages(lib, repos='http://cran.us.r-project.org'); if ( ! library(lib,character.only=TRUE,logical.return=TRUE)){quit(status=1,save='no')}"

# Install latest pexpect to fix asyncio issue with jupyterlab_git
RUN pip install --no-cache pexpect==4.9.0
# Install setuptools==69.0.0 to fix issue with nbgrader and "from backports import tarfile"
RUN pip install --no-cache pexpect==4.9.0 setuptools==69.0.0

# Disable the cell toolbar (which ignores metadata and students often accidentally click + delete grading cells)
RUN jupyter labextension disable @jupyterlab/cell-toolbar-extension
Expand Down

0 comments on commit 8426080

Please sign in to comment.