From 3294bffb5e46177c93a827b2b75a389eb0f88e69 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 12 Mar 2025 21:52:26 +0000 Subject: [PATCH] build(deltachat-rpc-client): move development dependencies from tox.ini to pyproject.toml --- deltachat-rpc-client/pyproject.toml | 8 ++++++++ deltachat-rpc-client/tox.ini | 7 ++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/deltachat-rpc-client/pyproject.toml b/deltachat-rpc-client/pyproject.toml index 95be922be6..74f27a263a 100644 --- a/deltachat-rpc-client/pyproject.toml +++ b/deltachat-rpc-client/pyproject.toml @@ -70,3 +70,11 @@ line-length = 120 [tool.isort] profile = "black" + +[dependency-groups] +dev = [ + "imap-tools", + "pytest", + "pytest-timeout", + "pytest-xdist", +] diff --git a/deltachat-rpc-client/tox.ini b/deltachat-rpc-client/tox.ini index 2c3b0cb4ef..3fc998d805 100644 --- a/deltachat-rpc-client/tox.ini +++ b/deltachat-rpc-client/tox.ini @@ -12,11 +12,8 @@ setenv = RUST_MIN_STACK=8388608 passenv = CHATMAIL_DOMAIN -deps = - pytest - pytest-timeout - pytest-xdist - imap-tools +dependency_groups = + dev [testenv:lint] skipsdist = True