Problems with Taiga integration

Hello,
on the repo for the taiga plugin, there are no issues I can report, so I thought I come here and hope to get some help.
I modified the Dockerfile, so it installs the taiga plugin

FROM sentry:9.0-onbuild

RUN pip install python-taiga && \
pip install sentry-taiga

and when I start sentry, I get this error

web_1        | Failed to load plugin 'taiga':
web_1        | Traceback (most recent call last):
web_1        |   File "/usr/local/lib/python2.7/site-packages/sentry/runner/initializer.py", line 31, in register_plugins
web_1        |     plugin = ep.load()
web_1        |   File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2320, in load
web_1        |     self.require(*args, **kwargs)
web_1        |   File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2343, in require
web_1        |     items = working_set.resolve(reqs, env, installer, extras=self.extras)
web_1        |   File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 782, in resolve
web_1        |     raise VersionConflict(dist, req).with_context(dependent_req)
web_1        | ContextualVersionConflict: (redis 2.10.5 (/usr/local/lib/python2.7/site-packages), Requirement.parse('redis>=2.10.6'), set(['redis-py-cluster']))

I understand what the problem is, but I don’t know how I should solve this.

Try to update the redis client in your derived image, before the taiga installs.

Do you mean Python Redis package ?