Skip to content
Snippets Groups Projects

main/py3-babel: add missing dependency

Merged Keith Maxwell requested to merge maxwell-k/aports:py3-babel into master

Before this change:

$ dabuild sh
$ sudo apk add py3-babel >/dev/null && pybabel --version
Traceback (most recent call last):
  File "/usr/bin/pybabel", line 6, in <module>
    from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'

This change adds py3-setuptools as a runtime dependency because pkg_resources is imported by a file installed into /usr/bin/:

$ grep pkg_resources /usr/bin/pybabel
from pkg_resources import load_entry_point

pkg_resources is part of py3-setuptools:

$ apk info -L py3-setuptools | grep pkg_resources/__init__.py
usr/lib/python3.8/site-packages/pkg_resources/__init__.py

After this change:

$ dabuild sh
$ sudo apk add py3-babel >/dev/null && pybabel --version
pybabel 2.8.0

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Loading
  • Loading
Please register or sign in to reply
Loading