From 73fe02cb30551e54435704d952048d000db68aaf Mon Sep 17 00:00:00 2001 From: Abdou Seck Date: Fri, 29 Dec 2023 16:07:57 -0500 Subject: [PATCH] docs: Trim the dependencies for tests --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ac0a6c6..45a1b98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dynamic = ["version"] [project.optional-dependencies] geoip = ["geoip2"] -test = ["black", "isort", "pip-tools", "sphinx", "sphinx-material", "tox"] +test = ["black", "isort", "tox"] dev = ["black", "isort", "pip-tools", "sphinx", "sphinx-material", "tox"] docs = ["sphinx", "sphinx-material"] diff --git a/setup.py b/setup.py index 01b2888..1ba6445 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ ], extras_require={ "geoip": ["geoip2"], - "test": ["black", "isort", "pip-tools", "sphinx", "sphinx-material", "tox"], + "test": ["black", "isort", "tox"], "dev": ["black", "isort", "pip-tools", "sphinx", "sphinx-material", "tox"], "docs": ["sphinx", "sphinx-material"], },