From aa70cc8abbfe07af50e52649999395a4cb7d52ef Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 21 May 2022 03:33:06 +0100 Subject: [PATCH] CI: Don't install tomli for stubtest_stdlib (#7901) The script doesn't import tomli --- .github/workflows/stubtest_stdlib.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stubtest_stdlib.yml b/.github/workflows/stubtest_stdlib.yml index 35390206b..8fa279b55 100644 --- a/.github/workflows/stubtest_stdlib.yml +++ b/.github/workflows/stubtest_stdlib.yml @@ -38,6 +38,6 @@ jobs: - name: Update pip run: python -m pip install -U pip - name: Install dependencies - run: pip install $(grep tomli== requirements-tests.txt) $(grep mypy== requirements-tests.txt) + run: pip install $(grep mypy== requirements-tests.txt) - name: Run stubtest run: python tests/stubtest_stdlib.py