From b749cad77eb3abc34485876efce1b044a0e7cb0d Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 6 Mar 2018 10:56:18 +1000 Subject: [PATCH] setup.py: don't require 'gi' Turns out this is not the gi.repository but a different package: 'Command line to private gist. Example: gi.py myFile' It's incompatible with python3 and fails on import and seems to conflict with gi.repository (also, the upstream seems dead). Fixes #103 --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 8769cb1..17531ad 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,6 @@ setup(name='tuhi', python_requires='>=3.6', install_requires=[ 'svgwrite', - 'gi', 'xdg', ] )