From a4135c1cb921174e815d3eac33442dcc728bc26a Mon Sep 17 00:00:00 2001 From: Martin Perina Date: Fri, 8 Mar 2024 17:17:44 +0100 Subject: [PATCH] Remove workaround for podman-py #350 Remove manual installation of python-rich dependency, which was required due to issue https://github.com/containers/podman-py/issues/350 in podman-py 4.8 and which should be fixed in podman-py 4.9 Signed-off-by: Martin Perina --- .github/workflows/integration-tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 4b1c09a637..934570e6e0 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -66,8 +66,6 @@ jobs: - name: Install unpackaged python libraries from PyPi run: | pip install "tmt[provision]==1.30" "tmt[report-junit]==1.30" podman pytest pyyaml paramiko - # Mitigate https://github.com/containers/podman-py/issues/350 - pip install rich - name: Checkout sources uses: actions/checkout@v4