Skip to content

Commit

Permalink
[CIVIS-9315] Update datascience-python base image to 8.0.1 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mheilman authored Sep 25, 2024
1 parent b1bcb3f commit 1a3e91a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ds_python_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.0.0
8.0.1
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [4.0.1]
### Fixed
- Update base datascience-python version to v8.0.1 (#57)
- Add setuptools to the Dockerfile since distutils was removed from Python 3.12.6 (#57)

## [4.0.0] - 2024-08-26
### Fixed
- update base datascience-python version to v8.0.0 (#56)
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Unfortunately Dockerhub isn't as flexible as CircleCi or AWS Codebuild, so we have to hardcode this value here.
# So if you in the future need to update this value, make sure you also edit the value in .ds_python_version.
# These values should be kept in sync.
ARG DS_PYTHON_IMG_VERSION=8.0.0
ARG DS_PYTHON_IMG_VERSION=8.0.1

ARG PLATFORM=linux/x86_64

Expand Down Expand Up @@ -35,7 +35,10 @@ RUN chmod +x /tini

COPY requirements-full.txt .

RUN pip install --progress-bar off --no-cache-dir -r requirements-full.txt && \
# setuptools is required since the notebook package uses distutils, which isn't in Python 3.12.6+.
# It's installed here since pip-compile doesn't include setuptools in requirements files.
RUN pip install --progress-bar off --no-cache-dir setuptools==75.1.0 && \
pip install --progress-bar off --no-cache-dir -r requirements-full.txt && \
rm requirements-full.txt && \
civis-jupyter-notebooks-install

Expand Down

0 comments on commit 1a3e91a

Please sign in to comment.