Bug#841071: python-debian: missing chardet from setup.py depends

Chris Lamb lamby at debian.org
Mon Oct 17 11:53:16 UTC 2016


Source: python-debian
Version: 0.1.29
Severity: minor
Tags: patch

Hi,

I just installed python-debian via PyPI. It was missing the dependency
on the chardet module. Everything is fine in Debian, hence the minor
severity here.

Untested patch attached. I think it's right; I'm more used to using
requirements.txt.


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      lamby at debian.org / chris-lamb.co.uk
       `-
-------------- next part --------------
diff --git a/setup.py b/setup.py
index 4cc7ebb..633f196 100644
--- a/setup.py
+++ b/setup.py
@@ -27,5 +27,5 @@ setup(name='python-debian',
       py_modules=['deb822'],
       maintainer='Debian python-debian Maintainers',
       maintainer_email='pkg-python-debian-maint at lists.alioth.debian.org',
-      install_requires=['six'],
+      install_requires=['six', 'chardet'],
      )


More information about the pkg-python-debian-maint mailing list