pootle
pootle copied to clipboard
Import django_bulk_update instead of bulk_update
The module name of django-bulk-update has changed from bulk_update
to django_bulk_update
in version 2.0.0 (see changelog). Pootle still uses the old package name. This still works most of the time, because django_bulk_update-2.2.0-py2.py3-none-any.whl
on PyPI includes the old bulk_update
module for backward compatibility. However, the source tree of django-bulk-update does not contain the bulk_update
module anymore, and Pootle currently won't work if django-bulk-update is installed from source. This PR fixes that.
@erosennin looks good - but im wondering if we need to bump requirements to ensure that pootle uses the newer version of bulk update
@phlax looks like we already have django-bulk-update==2.2.0
in requirements/base.txt
, it is currently the latest version of django-bulk-update.