We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96c633d + 753d0bb commit 030b03bCopy full SHA for 030b03b
Taskfile.yml
@@ -451,15 +451,18 @@ tasks:
451
task utility:normalize-path \
452
RAW_PATH="$(which python)" \
453
)"
454
+
455
+ poetry_constraint="$( \
456
+ yq \
457
+ --input-format toml \
458
+ --output-format yaml \
459
+ '.tool.poetry.group.pipx.dependencies.poetry' \
460
+ <pyproject.toml
461
+ )"
462
463
pipx install \
464
--force \
- "poetry==$( \
- yq \
- --input-format toml \
- --output-format yaml \
- '.tool.poetry.group.pipx.dependencies.poetry' \
- < pyproject.toml
- )"
465
+ "poetry==$poetry_constraint"
466
467
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
468
poetry:install-deps:
0 commit comments