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

Add python 3.11 base image #240

Merged
merged 5 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
jobs:
build:
docker:
- image: circleci/python:3.6.1
- image: circleci/python:3.6.15
working_directory: ~/skelebot
steps:
- checkout
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ Documenting All Changes to the Skelebot Project

---

## v1.37.0
#### Changed
- **Python 3.11** | Adding support for Python 3.11

---

## v1.36.1
#### Merged: 2023-06-21
#### Released: 2023-06-21
#### Changed
- **Artifactory** | Using the default aws profile should pass `None` to boto3 Session.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.36.1
1.37.0
13 changes: 13 additions & 0 deletions base-images/python-base/3.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.11-slim
MAINTAINER Sean Shookman <sshookman@cars.com>

# Install basic compilers and libraries commonly needed for downstream packages
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y -q build-essential libgomp1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN pip --no-cache-dir install -U pip
RUN pip --no-cache-dir install jupyter
RUN pip --no-cache-dir install jupyterlab
1 change: 1 addition & 0 deletions jobs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ docker build -t skelebot/python-base:3.7 base-images/python-base/3.7/
docker build -t skelebot/python-base:3.8 base-images/python-base/3.8/
docker build -t skelebot/python-base:3.9 base-images/python-base/3.9/
docker build -t skelebot/python-base:3.10 base-images/python-base/3.10/
docker build -t skelebot/python-base:3.11 base-images/python-base/3.11/

# Build python-krb
docker build -t skelebot/python-krb base-images/python-krb/
1 change: 1 addition & 0 deletions jobs/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ docker build -t skelebot/python-base:3.7 base-images/python-base/3.7/
docker build -t skelebot/python-base:3.8 base-images/python-base/3.8/
docker build -t skelebot/python-base:3.9 base-images/python-base/3.9/
docker build -t skelebot/python-base:3.10 base-images/python-base/3.10/
docker build -t skelebot/python-base:3.11 base-images/python-base/3.11/
# Newer Docker clients will push latest by default and will need to do `docker push skelebot/python-base --all-tags`
docker push skelebot/python-base

Expand Down