From 3c03d971f17fb658ea0124e474248c61c76165c3 Mon Sep 17 00:00:00 2001 From: Carl Date: Fri, 8 Jan 2021 16:43:48 +0100 Subject: [PATCH] [refs #304] Moving Faker to test dependencies as it is a direct dependency of factoryboy (see also #300) --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8df3fcad..6ff18fdb 100644 --- a/setup.py +++ b/setup.py @@ -19,11 +19,10 @@ install_requires=[ 'pylint-plugin-utils>=0.5', 'pylint>=2.0', - 'Faker<=5.0.1', ], extras_require={ 'with_django': ['Django'], - 'for_tests': ['django_tables2', 'factory-boy', 'coverage', 'pytest'], + 'for_tests': ['django_tables2', 'factory-boy', 'coverage', 'pytest', 'Faker<=5.0.1'], }, license='GPLv2', classifiers=[