From 5e541a2bfbaaaecd2a2354afb0ee0d448a63c89b Mon Sep 17 00:00:00 2001 From: alifeee Date: Fri, 15 Dec 2023 16:00:41 +0000 Subject: [PATCH] ignore pip security vulnerabilities see https://github.com/burnash/gspread/pull/1371#discussion_r1427445954 --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6e87c827b..55dc7bfd1 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -31,6 +31,6 @@ jobs: - run: tox -e py - run: mypy --install-types --ignore-missing-imports . || true - run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus - - run: safety check -i 42559 # pip <= 20.1.1, we upgrade it just above + - run: safety check -i 42559 -i 62044 # pip <= 20.1.1, we upgrade it just above - run: tox -e build - run: tox -e doc