From 9f32bed11e90a18ff8a36a3ec27be667d614f7f4 Mon Sep 17 00:00:00 2001 From: coderkun Date: Sun, 22 Oct 2017 10:39:28 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20=E2=80=9Cpygobject=E2=80=9D=20requirem?= =?UTF-8?q?ent=20from=20setup.py=20(fixes=20#31)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “pygobject” is not a python dependency and can therefore not be used as install requirement for setup.py. To avoid an error message and let the application start fine, this needs to be removed from setup.py. --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index d699a28..551aea9 100644 --- a/setup.py +++ b/setup.py @@ -76,9 +76,6 @@ setup( 'de.coderkun.mcg.gresource' ] }, - install_requires = [ - "pygobject" - ], extras_require = { 'keyring support': ["python-keyring"] },