From a83cfdd700913f7cf48d14b44927a1c4c1409ae9 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Wed, 13 Dec 2023 15:02:19 -0700 Subject: [PATCH] CI: Update pip/setuptools as part of setup This is to avoid a warning from setuptools_scm. --- .github/actions/install-pypi/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/install-pypi/action.yml b/.github/actions/install-pypi/action.yml index abbda96c94e..db05ba94a75 100644 --- a/.github/actions/install-pypi/action.yml +++ b/.github/actions/install-pypi/action.yml @@ -44,6 +44,12 @@ runs: shell: bash run: echo "PIP_NO_BINARY=shapely" >> $GITHUB_ENV + - name: Upgrade pip and setuptools + shell: bash + run: | + python -m pip install --upgrade pip + python -m pip install --upgrade setuptools + - name: Set dependency groups for install shell: bash run: |