From 436b62f5874e9773f60f4146f9ece6a224ae0f97 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 25 May 2023 16:33:14 +0200 Subject: [PATCH] setup.py: Drop unused test dependency "mock" All imports use unittest.mock rather than mock of PyPI. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 9f3b525..a94ffee 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,6 @@ install_requires = [ ] tests_require = [ - "mock", "pytest", "pytest-httpbin", ]