Skip to content

Commit 6bb1e05

Browse files
feature: 3.2.0 Release.
- Update `py38` image to 3.8.2 - Update poetry to 1.0.5 - Update pip to 20.0.2 - Update pre-commit to 2.1.1 - Update tox to 3.14.5 - Update virtualenv to 20.0.7
1 parent 1d24171 commit 6bb1e05

3 files changed

Lines changed: 23 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 3.2.0 (2020-03-01)
2+
3+
- Update `py38` image to Python 3.8.2
4+
- Update poetry to 1.0.5
5+
- Update pip to 20.0.2
6+
- Update pre-commit to 2.1.1
7+
- Update tox to 3.14.5
8+
- Update virtualenv to 20.0.7
9+
110
# 3.1.0 (2020-01-17)
211

312
- Update `py38` image to Python 3.8.1

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.1-slim-buster
1+
FROM python:3.8.2-slim-buster
22

33
LABEL maintainer="Igor Davydenko <iam@igordavydenko.com>"
44
LABEL description="Add poetry, pre-commit, and other dev-tools to official Python slim Docker image."
@@ -7,9 +7,9 @@ RUN apt update -qq && apt upgrade -y && apt install -y curl gcc git locales loca
77

88
ENV PATH="/root/.local/bin:/root/.poetry/bin:${PATH}"
99

10-
RUN pip install pip==19.3.1 pre-commit==1.21.0 tox==3.14.3 virtualenv==16.7.9
10+
RUN pip install pip==20.0.2 pre-commit==2.1.1 tox==3.14.5 virtualenv==20.0.7
1111

12-
ENV POETRY_VERSION=1.0.2
12+
ENV POETRY_VERSION=1.0.5
1313
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
1414

1515
WORKDIR /app

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ image.
99
## Usage
1010

1111
```
12-
FROM playpauseandstop/docker-python:3.1.0
12+
FROM playpauseandstop/docker-python:3.2.0
1313
```
1414

1515
### Included dev-tools
1616

17-
- [pip](https://pip.pypa.io) 19.3.1
18-
- [poetry](https://poetry.eustace.io) 1.0.2
19-
- [pre-commit](https://pre-commit.com) 1.21.0
20-
- [tox](https://tox.readthedocs.io/) 3.14.3
21-
- [virtualenv](https://virtualenv.pypa.io) 16.7.9
17+
- [pip](https://pip.pypa.io) 20.0.2
18+
- [poetry](https://poetry.eustace.io) 1.0.5
19+
- [pre-commit](https://pre-commit.com) 2.1.1
20+
- [tox](https://tox.readthedocs.io/) 3.14.5
21+
- [virtualenv](https://virtualenv.pypa.io) 20.0.7
2222
- [curl](https://curl.haxx.se) 7.64.0
2323
- [git](https://git-scm.com) 2.20.1
2424
- [locales](https://packages.debian.org/stretch/locales) &
@@ -35,6 +35,11 @@ other versions supported as well.
3535

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

38+
#### 3.2.0
39+
40+
- `py38` -> `python:3.8.2-slim-buster`
41+
- `py37` & `py36` uses same version as in `3.1.0`
42+
3843
#### 3.1.0
3944

4045
- `py38` -> `python:3.8.1-slim-buster`

0 commit comments

Comments
 (0)