summaryrefslogtreecommitdiff
path: root/debian/patches/0004-Removed-pylint-dependency.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0004-Removed-pylint-dependency.patch')
-rw-r--r--debian/patches/0004-Removed-pylint-dependency.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/0004-Removed-pylint-dependency.patch b/debian/patches/0004-Removed-pylint-dependency.patch
new file mode 100644
index 0000000..77fb4c0
--- /dev/null
+++ b/debian/patches/0004-Removed-pylint-dependency.patch
@@ -0,0 +1,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',