Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 6.1.0 (2022-10-25)

`py311` image now uses **stable** Python 3.11.0 version.

- Update `py311` image to Python 3.11.0
- Update `py310` image to Python 3.10.8
- Update `py39` image to Python 3.9.15
- Update `py38` image to Python 3.8.15
- Update `py37` image to Python 3.7.15
- Update pip to 22.3
- Update poetry to 1.2.2
- Update virtualenv to 20.16.6

# 6.0.0 (2022-09-17)

Update default image to use Python 3.11.0rc2, which hopefully allows image users better prepare to stable 3.11.0 release.
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add poetry, pre-commit and tox installed via pipx as well as other system dev to
## Usage

```dockerfile
FROM playpauseandstop/docker-python:6.0.0
FROM playpauseandstop/docker-python:6.1.0
```

### Included dev-tools
Expand Down Expand Up @@ -36,6 +36,14 @@ By default, `docker-python` image uses latest stable Python version. But some ot

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

#### 6.1.0

- `py311` -> `python:3.11.0-slim-bullseye`
- `py310` -> `python:3.10.8-slim-bullseye`
- `py39` -> `python:3.9.15-slim-bullseye`
- `py38` -> `python:3.8.15-slim-bullseye`
- `py37` -> `python:3.7.15-slim-bullseye`

#### 6.0.0

- `py311` -> `python:3.11.0rc2-slim-bullseye`
Expand Down