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.
1 parent 3a67e17 commit c02d2c8Copy full SHA for c02d2c8
specs/python/update_pip.yml
@@ -1,9 +1,11 @@
1
---
2
name: Update all pip3 packages
3
-command: "pip3 list --outdated --format=freeze | cut -d = -f 1 | xargs -n1 pip3 install -U"
4
-tags: ["python"]
+command: pip3 list --outdated --format=columns | tail -n +3 | awk '{print $1}' | xargs -n1 pip3 install -U
+tags: [
5
+ "python"
6
+]
7
description: Update all your pip3 packages in one go.
-source_url: "https://gist.github.com/kikulikov/898108545ad3297966111aeacf44def7"
-author: Kirill Kulikov
8
-author_url: "https://github.com/kikulikov"
+source_url: "https://github.com/warpdotdev/workflows/issues/149"
9
+author: Kirill Kulikov, csaper
10
+author_url: "https://github.com/kikulikov, https://github.com/csaper"
11
shells: []
0 commit comments