pygobject - Install python3-gi for Travis-CI and Python >= 3.3 -
what correct way install python3-gi
on travis-ci using .travis.yml
file?
the past recommendation use python 3.2 (travis-ci & gobject introspection), prefer testing against more recent versions.
i did try few sensible combinations of commands, knowledge of travis-ci environment basic:
this example fails , without using system_site_packages: true
:
before_install: - sudo apt-get install -qq python3-gi virtualenv: - system_site_packages: true
two examples of repositories have working (as far can tell):
- https://github.com/ignatenkobrain/gnome-news (circleci)
- https://github.com/devassistant/devassistant (travis-ci)
in order use newer version either have build or use container system docker.
gnome-news has example of pygobject project using circleci (which free alternative travis-ci). using fedora rawhide in docker has latest versions of entire gnome stack.
Comments
Post a Comment