Skip to content

Commit

Permalink
Remove the ignored safety ID related to RDFLib
Browse files Browse the repository at this point in the history
  • Loading branch information
CasperWA committed Oct 27, 2023
1 parent cfe0d05 commit 334267c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dic2owl_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,13 @@ jobs:
- name: Run PyLint
run: pylint --rcfile=dic2owl/pyproject.toml dic2owl/**/*.py

# Ignore ID 44715, 44716, and 44717 for now.
# See this NumPy issue for more information:
# https://github.com/numpy/numpy/issues/19038
# When dropping Python 3.7 support, these vulnerabilities are fixed and can be
# removed from the ignore list.
- name: Run safety
run: pip freeze | safety check --stdin
run: pip freeze | safety check --stdin --ignore 44715 --ignore 44716 --ignore 44717

dic2owl-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 334267c

Please sign in to comment.