From b4a1b9528af50fff6a0bb9d65fcf247f4807121d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 12 Dec 2022 21:26:37 +0100 Subject: [PATCH] ci: fix pip install warnings in GitHub Actions --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2eb2a8..3bf7259 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,8 @@ jobs: - name: Upgrade pip and setuptools # https://pypi.org/project/pip/ # https://pypi.org/project/setuptools/ - run: python -m pip install --upgrade pip setuptools==65.6.3 + # https://pypi.org/project/wheel/ + run: python -m pip install --upgrade pip setuptools==65.6.3 wheel - name: Print info about the current python installation run: make ci-info - name: Install requirements