Skip to content

Commit 512baa6

Browse files
committed
Remove poetry:update-deps task
This task updates all the project's Python package dependencies to the latest version. Performing bulk updates is not a good practice, since it is non-atomic and thus makes it difficult to bisect regressions caused by the update. In addition, it is not necessary since dependencies are now updated using Dependabot. For these reasons, the task is harmful and superfluous.
1 parent 7a90478 commit 512baa6

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Taskfile.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -687,14 +687,6 @@ tasks:
687687
poetry lock \
688688
--no-cache
689689
690-
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
691-
poetry:update-deps:
692-
desc: Update all dependencies managed by Poetry to their newest versions
693-
deps:
694-
- task: poetry:install
695-
cmds:
696-
- poetry update
697-
698690
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-poetry-task/Taskfile.yml
699691
poetry:validate:
700692
desc: Validate Poetry configuration

0 commit comments

Comments
 (0)