Skip to content

Commit 741f419

Browse files
feat: Update base Python image to 3.9.5
As well as bump, - `tox` to 3.23.1 - `virtualenv` to 20.4.6
1 parent ff5dce8 commit 741f419

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 4.3.0 (In Development)
2+
3+
- Update `py39` image to Python 3.9.5
4+
- Update `py38` image to Python 3.8.10
5+
- Update tox to 3.23.1
6+
- Update virtualenv to 20.4.6
7+
18
# 4.2.0 (2021-05-03)
29

310
- Update `py39` image to Python 3.9.4

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: Find out whether it possible to use "faster" base Python image
2-
FROM python:3.9.4-slim-buster as python-base
2+
FROM python:3.9.5-slim-buster as python-base
33

44
LABEL maintainer="Igor Davydenko <iam@igordavydenko.com>"
55
LABEL description="Add poetry, pre-commit, and other dev-tools to official Python slim Docker image."
@@ -45,8 +45,8 @@ RUN apt install -y ${ADDITIONAL_APPS} && apt autoremove -y
4545
# ```
4646
ENV PIP_VERSION "21.1.1"
4747
ENV PRE_COMMIT_VERSION "2.12.1"
48-
ENV TOX_VERSION "3.23.0"
49-
ENV VIRTUALENV_VERSION "20.4.4"
48+
ENV TOX_VERSION "3.23.1"
49+
ENV VIRTUALENV_VERSION "20.4.6"
5050

5151
RUN pip install \
5252
pip==${PIP_VERSION} \

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ FROM playpauseandstop/docker-python:4.2.0
3535
By default, `docker-python` image uses latest stable Python version. But some
3636
other versions supported as well.
3737

38-
List of supported Python versions are (`<PY_VERSION>` -> base Docker image):
38+
List of supported Python versions are (`<PY_VERSION>` -> base Docker image)
39+
40+
#### 4.3.0
41+
42+
- `py39` -> `python:3.9.5-slim-buster`
43+
- `py38` -> `python:3.8.10-slim-buster`
44+
- `py37` & `py36` use same base image as in `4.2.0`
3945

4046
#### 4.2.0
4147

0 commit comments

Comments
 (0)