Skip to content

Commit 1d24171

Browse files
feature: 3.1.0 Release.
- Update `py38` image to Python 3.8.1 - Update poetry to 1.0.2 - Update pre-commit to 1.21.0 - Update tox to 3.14.3 - Update virtualenv to 16.7.9
1 parent db33c98 commit 1d24171

3 files changed

Lines changed: 25 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 3.1.0 (2020-01-17)
2+
3+
- Update `py38` image to Python 3.8.1
4+
- Update `py37` image to Python 3.7.6
5+
- Update `py36` image to Python 3.6.10
6+
- Update poetry to 1.0.2
7+
- Update pre-commit to 1.21.0
8+
- Update tox to 3.14.3
9+
- Update virtualenv to 16.7.9
10+
111
# 3.0.0 (2019-12-13)
212

313
- Update poetry to 1.0.0

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.0-slim-buster
1+
FROM python:3.8.1-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.20.0 tox==3.14.2 virtualenv==16.7.8
10+
RUN pip install pip==19.3.1 pre-commit==1.21.0 tox==3.14.3 virtualenv==16.7.9
1111

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

1515
WORKDIR /app

README.md

Lines changed: 12 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.0.0
12+
FROM playpauseandstop/docker-python:3.1.0
1313
```
1414

1515
### Included dev-tools
1616

1717
- [pip](https://pip.pypa.io) 19.3.1
18-
- [poetry](https://poetry.eustace.io) 1.0.0
19-
- [pre-commit](https://pre-commit.com) 1.20.0
20-
- [tox](https://tox.readthedocs.io/) 3.14.2
21-
- [virtualenv](https://virtualenv.pypa.io) 16.7.8
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
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,7 +35,13 @@ other versions supported as well.
3535

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

38-
#### 3.0.0bX
38+
#### 3.1.0
39+
40+
- `py38` -> `python:3.8.1-slim-buster`
41+
- `py37` -> `python:3.7.6-slim-buster`
42+
- `py36` -> `python:3.6.10-slim-buster`
43+
44+
#### 3.0.0
3945

4046
- `py38` -> `python:3.8.0-slim-buster`
4147
- `py37` -> `python:3.7.5-slim-buster`

0 commit comments

Comments
 (0)