summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2023-09-18 10:36:12 +0100
committerAndrej Shadura <andrewsh@debian.org>2023-11-29 16:02:46 +0100
commit9c088bf1901710ef2f32dbc2399281c5770b7c74 (patch)
tree964010f41f66873785071bc6480db2f9affa1c51
parentd37c1b518940f4d5ad4fd95bfa451be74b90f94c (diff)
pyproject.toml: Move nose from dependencies to dev-dependencies
This is only needed when running the build-time tests, and is not needed for ordinary use of the tool. Signed-off-by: Simon McVittie <smcv@debian.org> Forwarded: https://github.com/intel/bmap-tools/pull/120 Gbp-Pq: Name pyproject.toml-Move-nose-from-dependencies-to-dev-depende.patch
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 502ad3e..5953fd8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,11 +8,11 @@ authors = ["Artem Bityutskiy <dedekind1@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
six = "^1.16.0"
-nose = "^1.3.7"
gpg = "^1.10.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
+nose = "^1.3.7"
[tool.poetry.scripts]
bmaptool = "bmaptools.CLI:main"