aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-gitlab
Commit message (Collapse)AuthorAgeFilesLines
* community/py3-gitlab: add missing dependencyKeith Maxwell2020-04-111-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ sudo apk add py3-gitlab ✂ $ gitlab --version Traceback (most recent call last): File "/usr/bin/gitlab", line 6, in <module> from pkg_resources import load_entry_point ModuleNotFoundError: No module named 'pkg_resources' After this change: $ sudo apk add py3-gitlab ✂ $ gitlab --version 2.2.0 The commands above were run inside docker-abuild using `dabuild sh`. The change is required because `/usr/bin/gitlab` includes the line: from pkg_resources import load_entry_point That means that py3-setuptools is required at runtime: $ python3 -c 'import pkg_resources; print(pkg_resources.__file__)' /usr/lib/python3.8/site-packages/pkg_resources/__init__.py $ apk info -q -W /usr/lib/python3.8/site-packages/pkg_resources/__init__.py py3-setuptools
* community/py3-gitlab: upgrade to 2.2.0Keith Maxwell2020-04-111-4/+10
| | | | | Enable 35 tests in six files; all of the tests that don't require httmock.
* community/py3-gitlab: move from testingLeo2020-03-271-0/+30