pin PyGObject versions to distro provided packages

this prevents pip trying to build the pypi package and failing.
Fixes: #1107
This commit is contained in:
Zachary Klosko 2020-11-16 14:38:25 -05:00 committed by Kyle Robbertze
parent f62ed7d2e3
commit a5023d031a
4 changed files with 27 additions and 4 deletions

View file

@ -29,7 +29,7 @@ setup(name='airtime_analyzer',
packages=['airtime_analyzer'],
scripts=['bin/airtime_analyzer'],
install_requires=[
'mutagen~=1.43',
'mutagen==1.42.0',
'pika~=1.1.0',
'file-magic',
'nose',
@ -37,7 +37,9 @@ setup(name='airtime_analyzer',
'mock',
'python-daemon',
'requests>=2.7.0',
'rgain3',
'rgain3==1.0.0',
'pycairo==1.19.1',
'PyGObject<=3.36.1',
# These next 3 are required for requests to support SSL with SNI. Learned this the hard way...
# What sucks is that GCC is required to pip install these.
#'ndg-httpsclient',