Skip to content

Commit 8e8e196

Browse files
committed
Fixed typo and update poetry 1.2.1
Signed-off-by: Toomore Chiang <[email protected]>
1 parent 4e6699e commit 8e8e196

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build_docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install and configure Poetry
2828
uses: snok/install-poetry@v1
2929
with:
30-
version: 1.2.0
30+
version: 1.2.1
3131
virtualenvs-create: true
3232
virtualenvs-in-project: false
3333
installer-parallel: true

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install and configure Poetry
2323
uses: snok/install-poetry@v1
2424
with:
25-
version: 1.2.0
25+
version: 1.2.1
2626
virtualenvs-create: true
2727
virtualenvs-in-project: false
2828
installer-parallel: true

Dockerfile-base

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ RUN \
1313
cd ../ && rm -rf ./jemalloc* && \
1414
curl -sSL https://install.python-poetry.org | python3 - && \
1515
poetry install --no-dev && \
16-
RUN apk del .build-deps && \
16+
apk del .build-deps && \
1717
rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/*

Dockerfile-base-dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ RUN \
1313
cd ../ && rm -rf ./jemalloc* && \
1414
curl -sSL https://install.python-poetry.org | python3 - && \
1515
poetry install && \
16-
RUN apk del .build-deps && \
16+
apk del .build-deps && \
1717
rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/*

0 commit comments

Comments
 (0)