From f9f72344fb478b583de29f4a965607b54143b9fc Mon Sep 17 00:00:00 2001 From: carefree0910 Date: Sat, 21 Sep 2024 12:07:59 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7Tried=20to=20only=20install=20depen?= =?UTF-8?q?dencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c586662..9c70e5b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,7 +32,9 @@ jobs: with: python-version: ${{ env.PYTHON_VERSION }} - name: Install dependencies - run: pip install . + run: | + pip install toml && python -c 'import toml; c = toml.load("pyproject.toml") \ + print("\n".join(c["build-system"]["requires"]))' | pip install -r /dev/stdin - name: Install check dependencies run: pip install black mypy pandas-stubs - name: black