Skip to content

Commit 695abe5

Browse files
Revert "6.2.0 Release (#85)" (#86)
This reverts commit 04d4075. Reverts: #85
1 parent 04d4075 commit 695abe5

3 files changed

Lines changed: 8 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
1-
# 6.2.0 (2023-01-09)
2-
3-
- Update `py311` image to Python 3.11.1
4-
- Update `py310` image to Python 3.10.9
5-
- Update `py39` image to Python 3.9.16
6-
- Update `py38` image to Python 3.8.16
7-
- Update `py37` image to Python 3.7.16
8-
- Update pip to 22.3.1
9-
- **POSSIBLE BREAKING CHANGE:** Update poetry to 1.3.1
10-
- Update pre-commit to 2.21.0
11-
- **POSSIBLE BREAKING CHANGE:** Update tox to 4.2.6
12-
- Update virtualenv to 20.17.1
13-
141
# 6.1.0 (2022-10-25)
152

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

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1+
.PHONY: all build deploy run
2+
13
DOCKER ?= docker
24
IMAGE ?= playpauseandstop/docker-python
35
TAG ?= latest
46

57
all: build
68

7-
.PHONY: build
89
build: .build
910
.build: Dockerfile
1011
$(DOCKER) build -t $(IMAGE):$(TAG) .
1112
touch $@
1213

13-
.PHONY: list-versions
14+
deploy: build
15+
$(DOCKER) push $(IMAGE):$(TAG)
16+
1417
list-versions:
15-
./scripts/pip-latest-release.sh pip pipx poetry pre-commit tox virtualenv
18+
pip-latest-release pip pre-commit tox virtualenv
1619

17-
.PHONY: run
1820
run: build
1921
$(DOCKER) run --rm -it $(IMAGE):$(TAG) $(ARGS)

README.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add poetry, pre-commit and tox installed via pipx as well as other system dev to
88
## Usage
99

1010
```dockerfile
11-
FROM playpauseandstop/docker-python:6.2.0
11+
FROM playpauseandstop/docker-python:6.1.0
1212
```
1313

1414
### Included dev-tools
@@ -36,14 +36,6 @@ 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-
#### 6.2.0
40-
41-
- `py311` -> `python:3.11.1-slim-bullseye`
42-
- `py310` -> `python:3.10.9-slim-bullseye`
43-
- `py39` -> `python:3.9.16-slim-bullseye`
44-
- `py38` -> `python:3.8.16-slim-bullseye`
45-
- `py37` -> `python:3.7.16-slim-bullseye`
46-
4739
#### 6.1.0
4840

4941
- `py311` -> `python:3.11.0-slim-bullseye`
@@ -196,11 +188,5 @@ make
196188
To run something, using built image:
197189

198190
```bash
199-
make run ARGS="..."
200-
```
201-
202-
To list latest versions of Python dev tools, included in the image (this is useful for updating versions in `Dockerfile`):
203-
204-
```bash
205-
make list-versions
191+
make ARGS="..." run
206192
```

0 commit comments

Comments
 (0)