
A recent importlib_resources 6.0.0 release dropped a bunch of deprecated functionality, some of which mailman-core is relying on. In order to address the resulting ImportError, pin back to the last working version of that transitive dependency for now. Upstream bug https://gitlab.com/mailman/mailman/-/issues/1093 is tracking this. Change-Id: Ia280a1771a5d11badb4c65ccd4ce87270adff93c
9 lines
367 B
Plaintext
9 lines
367 B
Plaintext
# This is a separate file from Dockerfile so that we can use dependabot
|
|
# for version updates that isn't supported for contents inside the
|
|
# Dockerfile.
|
|
mailman==3.3.7
|
|
mailman-hyperkitty==1.2.0
|
|
# mailman/config/config.py "from importlib_resources import path" ImportError
|
|
# remove when https://gitlab.com/mailman/mailman/-/issues/1093 is solved
|
|
importlib_resources<6
|