File tree 3 files changed +24
-2
lines changed
3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 28
28
- name : Install Poetry
29
29
run : pipx install poetry
30
30
31
+ # We install poetry-dynamic-versioning into pipx because the automatic installallation
32
+ # by poetry 2.x triggers a Windows issue https://github.com/pypa/installer/issues/260
33
+ - name : Install poetry-dynamic-versioning
34
+ if : runner.os == 'Windows'
35
+ run :
36
+ pipx inject poetry poetry-dynamic-versioning
37
+
31
38
# ----------------------------------------------
32
39
# check-out repo and set-up python
33
40
# ----------------------------------------------
Original file line number Diff line number Diff line change 24
24
# install poetry
25
25
# ----------------------------------------------
26
26
- name : Install Poetry
27
- run : pipx install poetry
28
-
27
+ run : |
28
+ pipx install poetry
29
+
30
+ # We install poetry-dynamic-versioning into pipx because the automatic installallation
31
+ # by poetry 2.x triggers a Windows issue https://github.com/pypa/installer/issues/260
32
+ - name : Install poetry-dynamic-versioning
33
+ if : runner.os == 'Windows'
34
+ run :
35
+ pipx inject poetry poetry-dynamic-versioning
36
+
29
37
# ----------------------------------------------
30
38
# check-out repo and set-up python
31
39
# ----------------------------------------------
Original file line number Diff line number Diff line change 55
55
- name : Install poetry
56
56
run : pipx install poetry
57
57
58
+ # We install poetry-dynamic-versioning into pipx because the automatic installallation
59
+ # by poetry 2.x triggers a Windows issue https://github.com/pypa/installer/issues/260
60
+ - name : Install poetry-dynamic-versioning
61
+ if : runner.os == 'Windows'
62
+ run :
63
+ pipx inject poetry poetry-dynamic-versioning
64
+
58
65
- name : Load cached venv
59
66
id : cached-poetry-dependencies
60
67
uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
You can’t perform that action at this time.
0 commit comments