From d9f06219e0276f2ae874492f818f329dda52cb76 Mon Sep 17 00:00:00 2001 From: Carl Date: Fri, 8 Jan 2021 16:43:48 +0100 Subject: [PATCH 1/2] [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=[ From 3df97039d80c3a9b5ca59bf7deaba2fae1a1fc64 Mon Sep 17 00:00:00 2001 From: Carl Date: Fri, 8 Jan 2021 19:24:05 +0100 Subject: [PATCH 2/2] [refs #304] Adding changelog update and version bump for hotfix release --- CHANGELOG.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3d9d1fc0..a8cfd3a5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +Version 2.4.2 (08 Jan 2021) +--------------------------- + +- Moved `Faker` dependencies to test-only `#304 `_ + + Version 2.4.1 (07 Jan 2021) --------------------------- diff --git a/setup.py b/setup.py index 6ff18fdb..e489ec7d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ author_email='code@landscape.io', description='A Pylint plugin to help Pylint understand the Django web framework', long_description=LONG_DESCRIPTION, - version='2.4.1', + version='2.4.2', packages=find_packages(), include_package_data=True, install_requires=[