AmpForm 0.11.3
Release 0.11.3
See all documentation for this version here.
🐛 Bug fixes
import OrderedDict from collections instead of typing-extensions (#162)
Previously, OrderedDict
was imported from typing-extensions
. This seems to work better for typing than collections.OrderedDict
, but is only available in typing-extensions==3.10.*
, see e.g.
https://github.com/ComPWA/tensorwaves/pull/327/checks?check_run_id=3717304158
Setting typing-extensions>=3.10
as a lower limit however causes problems downstream for packages that use TensorFlow, see e.g. ComPWA/tensorwaves#317
For now, it's therefore better to use collections.OrderedDict instead, so that there is no need to restrict typing-extensions.