From c3c38d6774ad656f7c314ea0fd3ed7634650b82b Mon Sep 17 00:00:00 2001 From: Peter Pentchev Date: Thu, 14 May 2020 08:41:27 +0300 Subject: [PATCH] Drop nose from the setuptools definitions. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2717252..1ca86ff 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,6 @@ 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Testing', ], - setup_requires=['enum34; python_version < "3"', 'nose'], - install_requires=['enum34; python_version < "3"', 'nose'], + setup_requires=['enum34; python_version < "3"'], + install_requires=['enum34; python_version < "3"'], )