From e2f0ace30a15ca748a670621e1594f47515aa8a5 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Tue, 29 Aug 2023 23:48:37 -0500 Subject: [PATCH] forgejo: make pip quieter-er --- .forgejo/workflows/pylint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/pylint.yml b/.forgejo/workflows/pylint.yml index 9a2d92e..0624d21 100644 --- a/.forgejo/workflows/pylint.yml +++ b/.forgejo/workflows/pylint.yml @@ -19,9 +19,9 @@ jobs: - uses: actions/checkout@v3 - name: Install Python dependencies run: | - python3 -m pip -q install --upgrade pip - python3 -m pip -q install --no-compile -r requirements.txt - python3 -m pip -q install pylint + python3 -m pip -qq install --upgrade pip + python3 -m pip -qq install --no-compile -r requirements.txt + python3 -m pip -qq install pylint - name: Show Python modules / versions run: python3 -m pip list