Skip to content

Commit

Permalink
Fix safety errors
Browse files Browse the repository at this point in the history
  • Loading branch information
barrelful committed Dec 11, 2022
1 parent 864ef26 commit 32f1f28
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 14 deletions.
83 changes: 73 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Expand Up @@ -53,9 +53,7 @@ colors = ["colorama"]
plugins = ["setuptools"]

[tool.poetry.dev-dependencies]
vulture = "^1.0"
bandit = "^1.6"
safety = "^1.8"
flake8-bugbear = "^19.8"
black = {version = "^21.10b0", allow-prereleases = true}
coverage = {version = "^6.0b1", allow-prereleases = true}
Expand All @@ -78,6 +76,8 @@ pip_api = "^0.0.12"
pylama = "^7.7"
pip = "^21.1.1"
pip-shims = "^0.5.2"
py = "^1.11.0"
safety = "^2.2.0"
smmap2 = "^3.0.1"
gitdb2 = "^4.0.2"
httpx = "^0.13.3"
Expand All @@ -87,13 +87,13 @@ flake8 = "^3.8.4"
hypothesis = "^6.10.1"
libcst = "^0.3.18"
mypy-extensions = "^0.4.3"
py = "^1.10.0"
toml = "^0.10.2"
pytest-benchmark = "^3.4.1"
types-pkg-resources = "^0.1.2"
pre-commit = "^2.13.0"
types-colorama = "^0.4.2"
types-toml = "^0.1.3"
vulture = "^1.0"

[tool.poetry.scripts]
isort = "isort.main:main"
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint.sh
Expand Up @@ -7,5 +7,5 @@ poetry run black --target-version py37 --check .
poetry run isort --profile hug --check --diff isort/ tests/
poetry run isort --profile hug --check --diff example_*/
poetry run flake8 isort/ tests/
poetry run safety check -i 39462 -i 40291 -i 43453 -i 44717 -i 44716 -i 44715 -i 47794
poetry run safety check -i 39462 -i 40291 -i 43453 -i 44717 -i 44716 -i 44715 -i 47794 -i 49337 -i 50870 -i 51457 -i 51499
poetry run bandit -r isort/ -x isort/_vendored

0 comments on commit 32f1f28

Please sign in to comment.