From b39dd294bddd2d9371b518182c6c426fcebe8de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ingvar=20Dahlgren?= Date: Mon, 8 May 2023 17:08:27 +0200 Subject: [PATCH] drop "safety" package from lint --- .github/workflows/lint_python.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 73977ead..89f6d11c 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -10,7 +10,7 @@ jobs: python-version: 3.x - run: pip install --upgrade pip wheel - run: pip install bandit "black[jupyter]" codespell flake8 flake8-2020 - isort mypy pytest pyupgrade safety + isort mypy pytest pyupgrade - run: bandit --recursive --skip B101,B102,B110,B112,B307,B404,B603,B607 . - run: black --check . || true - run: codespell --ignore-words-list="ans,claus,fith,nam,nd,ond,serie,te" @@ -26,4 +26,3 @@ jobs: - run: pytest . || true - run: pytest --doctest-modules . || true - run: shopt -s globstar && pyupgrade --py37-plus **/*.py || true - - run: safety check