Skip to content

Commit 12ddc7b

Browse files
build: Bump poetry and other dependencies (#14)
Also install poetry via `install-poetry.py` script instead of `get-poetry.py`.
1 parent b3074a5 commit 12ddc7b

2 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 4.4.0 (In Development)
2+
3+
- Update `py39` image to Python 3.9.7
4+
- Update poetry to 1.1.10
5+
- Use `install-python.py` script instead of `get-poetry.py` to install poetry
6+
- Update pip to 21.2.4
7+
- Update pre-commit to 2.15.0
8+
- Update tox to 3.24.4
9+
- Update virtualenv to 20.8.8
10+
111
# 4.3.0 (2021-05-09)
212

313
- Update `py39` image to Python 3.9.5

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ENV PATH "${POETRY_HOME}/bin:${PATH}"
1515
# Install poetry at one stage
1616
FROM python-base as poetry-base
1717

18-
ENV POETRY_VERSION "1.1.6"
18+
ENV POETRY_VERSION "1.1.10"
1919
RUN apt install -y build-essential curl
20-
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
20+
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/install-poetry.py | python
2121
RUN poetry --version
2222

2323
# Install dev tools at another stage
@@ -43,10 +43,10 @@ RUN apt install -y ${ADDITIONAL_APPS} && apt autoremove -y
4343
# ```bash
4444
# pip-latest-release pip pre-commit tox virtualenv
4545
# ```
46-
ENV PIP_VERSION "21.1.1"
47-
ENV PRE_COMMIT_VERSION "2.12.1"
48-
ENV TOX_VERSION "3.23.1"
49-
ENV VIRTUALENV_VERSION "20.4.6"
46+
ENV PIP_VERSION "21.2.4"
47+
ENV PRE_COMMIT_VERSION "2.15.0"
48+
ENV TOX_VERSION "3.24.4"
49+
ENV VIRTUALENV_VERSION "20.8.1"
5050

5151
RUN pip install \
5252
pip==${PIP_VERSION} \

0 commit comments

Comments
 (0)