summaryrefslogtreecommitdiff
path: root/debian/patches/0004-Removed-pylint-dependency.patch
blob: 77fb4c0fec67455ad083c9d6e7d43de9d81ec79c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca@debian.org>
Date: Sun, 1 Sep 2019 14:41:46 +0200
Subject: Removed pylint dependency

dh_python3 generate a pylint3 dependency. So we need to remove it, until
it is fixed by the dh-python upstream
---
 setup.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 63393c7..539c812 100644
--- a/setup.py
+++ b/setup.py
@@ -224,7 +224,10 @@ install_requires = [
     'nbconvert',
     'sphinx',
     'pycodestyle',
-    'pylint',
+    # dh_python3 automatically convert pylint dependency into pylin3.
+    # until it is fixed by dh_python3, just remote it and add it byhand in
+    # the control file
+    #'pylint',
     'psutil',
     'qtawesome>=0.5.7',
     'qtpy>=1.5.0',