Skip to content

Commit 549fd00

Browse files
chore: 5.1.0 Release (#24)
- Update `py310` image to 3.10.1 - Update `py39` image to 3.9.9 - Update poetry to 1.1.12 - Update pre-commit to 2.16.0
1 parent ce4a384 commit 549fd00

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 5.1.0 (2021-12-19)
2+
3+
- Update `py310` image to Python 3.10.1
4+
- Update `py39` image to Python 3.9.9
5+
- Update poetry to 1.1.12
6+
- Update pre-commit to 2.16.0
7+
18
# 5.0.0 (2021-11-08)
29

310
Update default Python version to use to 3.10.0, as well as use latest `slim-bullseye` image instead of `slim-buster`.

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10.0-slim-bullseye as python-base
1+
FROM python:3.10.1-slim-bullseye as python-base
22

33
LABEL maintainer="Igor Davydenko <iam@igordavydenko.com>"
44
LABEL description="Add poetry, pre-commit and tox installed via pipx as well as other system dev tools to official Python slim Docker image."
@@ -37,8 +37,8 @@ ENV PATH="/root/.local/bin:${PATH}"
3737
# ```
3838
ENV PIP_VERSION="21.3.1"
3939
ENV PIPX_VERSION="0.16.4"
40-
ENV POETRY_VERSION="1.1.11"
41-
ENV PRE_COMMIT_VERSION="2.15.0"
40+
ENV POETRY_VERSION="1.1.12"
41+
ENV PRE_COMMIT_VERSION="2.16.0"
4242
ENV TOX_VERSION="3.24.4"
4343
ENV VIRTUALENV_VERSION="20.10.0"
4444

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ FROM playpauseandstop/docker-python:5.0.0
1515

1616
- [pip](https://pip.pypa.io) 21.3.1
1717
- [pipx](https://pypa.github.io/pipx/) 0.16.4
18-
- [poetry](https://python-poetry.org) 1.1.11
19-
- [pre-commit](https://pre-commit.com) 2.15.0
18+
- [poetry](https://python-poetry.org) 1.1.12
19+
- [pre-commit](https://pre-commit.com) 2.16.0
2020
- [tox](https://tox.readthedocs.io/) 3.24.2
2121
- [virtualenv](https://virtualenv.pypa.io) 20.10.0
2222
- [curl](https://curl.haxx.se) 7.74.0
@@ -36,6 +36,12 @@ By default, `docker-python` image uses latest stable Python version. But some ot
3636

3737
List of supported Python versions are (`<PY_VERSION>` -> base Docker image)
3838

39+
#### 5.1.0
40+
41+
- `py310` -> `python:3.10.1-slim-bullseye`
42+
- `py39` -> `python:3.9.9-slim-bullseye`
43+
- `py38`, `py37` & `py36` use same base image as in `5.0.0`
44+
3945
#### 5.0.0
4046

4147
- `py310` -> `python:3.10.0-slim-bullseye`

0 commit comments

Comments
 (0)