Skip to content

Commit 278a864

Browse files
ci: upgrade Poetry from 1.3.2 to 1.4.2 to fix Windows race condition
Poetry 1.3.x has a known Windows file-locking race condition when installing packages (tilde-prefixed dist-info temp files cause OSError). Version 1.4.0+ fixes this. Using 1.4.2 (last release in 1.4.x series) to stay on same lockfile format as 1.3.x. Fixes: Windows CI failure in jobs that run 'poetry install'
1 parent f179ea6 commit 278a864

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-tauri.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
if [ "$RUNNER_OS" == "Windows" ]; then
114114
choco install innosetup
115115
fi
116-
pip3 install poetry==1.3.2
116+
pip3 install poetry==1.4.2
117117
118118
- name: Build
119119
uses: nick-fields/retry@v3

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
if [ "$RUNNER_OS" == "Windows" ]; then
128128
choco install innosetup
129129
fi
130-
pip3 install poetry==1.3.2
130+
pip3 install poetry==1.4.2
131131
132132
- name: Build
133133
run: |

0 commit comments

Comments
 (0)