Skip to content

Commit feb06fd

Browse files
chore: Various development improvements.
Preparing possibility of `3.0.0b0-py37` & `3.0.0b0-py36` releases.
1 parent 0737ee4 commit feb06fd

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
- **Breaking change:** Make `py38` default image
66
- **Breaking change:** Install `poetry==1.0.0b4` for all images
7-
- **Breaking change:** Use `slim-buster` image for `py35`, `py36`, and `py37`
7+
- **Breaking change:** Use `slim-buster` image for `py37` & `py36` as well
8+
- **Breaking change:** Drop support of `py35` images
89
- Simplify development by introducing `Makefile`
910

1011
# 2.0.0 (2019-10-29)

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
DOCKER ?= docker
44
IMAGE ?= playpauseandstop/docker-python
5+
VERSION ?= latest
56

67
all: build
78

89
build: .build
910
.build: Dockerfile
10-
$(DOCKER) build -t $(IMAGE) .
11+
$(DOCKER) build -t $(IMAGE):$(VERSION) .
1112
touch $@
1213

1314
deploy:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ List of supported Python versions are (`<PY_VERSION>` -> base Docker image):
3838
#### 3.0.0b0
3939

4040
- `py38` -> `python:3.8.0-slim-buster`
41+
- `py37` -> `python:3.7.5-slim-buster`
42+
- `py36` -> `python:3.6.9-slim-buster`
4143

4244
#### 2.0.0
4345

0 commit comments

Comments
 (0)