From 433f29d44edba1a3865b423b423de30b07212deb Mon Sep 17 00:00:00 2001 From: Martin Miglio Date: Wed, 23 Nov 2022 14:29:58 -0500 Subject: [PATCH] add vulture to dev deps --- poetry.lock | 17 ++++++++++++++++- pyproject.toml | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 83ddd94bb..86f6d878d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2946,6 +2946,17 @@ platformdirs = ">=2.4,<3" docs = ["proselint (>=0.13)", "sphinx (>=5.3)", "sphinx-argparse (>=0.3.2)", "sphinx-rtd-theme (>=1)", "towncrier (>=22.8)"] testing = ["coverage (>=6.2)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=21.3)", "pytest (>=7.0.1)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.6.1)", "pytest-randomly (>=3.10.3)", "pytest-timeout (>=2.1)"] +[[package]] +name = "vulture" +version = "2.6" +description = "Find dead code" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +toml = "*" + [[package]] name = "wcwidth" version = "0.2.5" @@ -2957,7 +2968,7 @@ python-versions = "*" [metadata] lock-version = "1.1" python-versions = "^3.10.0" -content-hash = "9049ee9894eff9d8695b34061623b1e32f42e264d6bff2b0fef2b83f32e213c7" +content-hash = "d6a6add3377a8fff45f4ed762289b173395dc6c91faf2bbcd4f1c7f9e006663b" [metadata.files] ahk = [ @@ -4731,6 +4742,10 @@ virtualenv = [ {file = "virtualenv-20.16.7-py3-none-any.whl", hash = "sha256:efd66b00386fdb7dbe4822d172303f40cd05e50e01740b19ea42425cbe653e29"}, {file = "virtualenv-20.16.7.tar.gz", hash = "sha256:8691e3ff9387f743e00f6bb20f70121f5e4f596cae754531f2b3b3a1b1ac696e"}, ] +vulture = [ + {file = "vulture-2.6-py2.py3-none-any.whl", hash = "sha256:e792e903ccc063ec4873a8979dcf11b51ea3d65a2d3b31c113d47be48f0cdcae"}, + {file = "vulture-2.6.tar.gz", hash = "sha256:2515fa848181001dc8a73aba6a01a1a17406f5d372f24ec7f7191866f9f4997e"}, +] wcwidth = [ {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, diff --git a/pyproject.toml b/pyproject.toml index 1d19dd6e8..f62ae9bed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,6 +61,7 @@ pre-commit = "^2.20" black = "^22.10.0" matplotlib = "^3.6.2" # used in debug.py ipykernel = "^6.17.1" +vulture = "^2.6" [tool.black]