We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb9d4d commit ace5228Copy full SHA for ace5228
.github/workflows/main.yaml
@@ -24,8 +24,16 @@ jobs:
24
# install poetry
25
#----------------------------------------------
26
- name: Install Poetry
27
- run: pipx install poetry
28
-
+ run: |
+ pipx install poetry
29
+
30
+ # We install poetry-dynamic-versioning into pipx because the install by poetry 2.x
31
+ # currently 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
37
38
# check-out repo and set-up python
39
0 commit comments