This page describes important changes between python-gitlab releases.
The
projects
attribute ofGroup
objects is not a list ofProject
objects anymore. It is a Manager object giving access toGroupProject
objects. To get the list of projects use:group.projects.list()
Documentation: http://python-gitlab.readthedocs.io/en/stable/gl_objects/groups.html#examples
Related issue: python-gitlab#209
The
Key
objects are deprecated in favor of the newDeployKey
objects. They are exactly the same but the name makes more sense.Documentation: http://python-gitlab.readthedocs.io/en/stable/gl_objects/deploy_keys.html
Related issue: python-gitlab#212