Ampform

Latest version: v0.15.8

Safety actively analyzes 723973 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 10

0.12.0

See all documentation for this version [here](https://ampform.rtfd.io/en/0.12.0).

_Major interface changes: kinematic variables are not computed with NumPy anymore. Instead, AmpForm provides an expression for those conversions, so that the conversion can be done with different back-ends. See 177 for more info._

💡 New features

<details>
<summary>Kinematic variables are now expressed symbolically (177)</summary>

Closes 174

This PR implements [TR-011](https://compwa-org.readthedocs.io/en/stable/report/011.html). It merges the `ampform.data` module into `ampform.kinematics`. Most notably, the recursive helicity angles are now expressed as SymPy expressions, so that they can be computed with different computational back-ends.

</details>

<details>
<summary>AmpForm supports Python 3.10 (172)</summary>

</details>

⚠️ Interface

<details>
<summary>implement_doit_method decorator does not take arguments anymore (178)</summary>

The `implement_doit_method` decorator was using one inline function layer too many. So now you have to write

python
implement_doit_method
class MyExpr(UnevaluatedExpression):
...


instead of

python
implement_doit_method()
class MyExpr(UnevaluatedExpression):
...


</details>

<details>
<summary>Renamed CoupledWidth to EnergyDependentWidth (150)</summary>

The `CoupledWidth` class has been renamed to `EnergyDependentWidth`.

`CoupledWidth` was a bit confusing. More common terms are mass/energy dependent width or running width.

</details>

<details>
<summary>Added HelicityModel.kinematics, removed HelicityModel.adapter (177)</summary>

Several changes to `HelicityModel` due to 177. Most notably, its `adapter` attribute has been removed in favour of `kinematics`, which is a `dict` of helicity angle `Symbol`s to `Expr`s in terms of four-momentum symbols

</details>

🐛 Bug fixes

<details>
<summary>Minimum SymPy version set to v1.8 (185)</summary>

Google Colab comes with SymPy v1.7, which doesn't have the module `sympy.printing.numpy`. So at least SymPy v1.8 is required.

</details>

🔨 Internal maintenance

<details>
<summary>Importing ampform is about twice as fast now (189)</summary>

With https://github.com/ComPWA/qrules/pull/130 and f08f1f0, `import ampform` is about 2x as fast

</details>

<details>
<summary>_numpycode() printer methods now use SymPy's module_imports (187)</summary>

Classes like `ArrayAxisSum` were specifically using statements like

python
printer.module_imports["numpy"].add("sum")


This is problematic in TensorWaves, which would like to see `"jnp"` and `"tnp"` there (the NumPy interfaces of JAX and TensorFlow). This PR makes this possible.

Another major improvements: `einsum` in `ArrayMultiplication` is used in such a way that `transpose` is not necessary anymore. In addition, an ellipsis return statement is specificied (`"...ij,...j->...i"` instead of `"...ij,...j"`), which [`tf.einsum`](https://www.tensorflow.org/api_docs/python/tf/einsum) requires.

</details>

📝 Documentation

<details>
<summary>Links to Binder and Google Colab are now pinned for each version (179)</summary>

Branch name in `conf.py` is now extracted [from Read the Docs](https://docs.readthedocs.io/en/stable/builds.html) if possible. This way, all Binder/Colab links lead to the corresponding branch or tag of the repo.

</details>

🖱️ Developer Experience

<details>
<summary>Notebooks can now be run with pytest (186)</summary>

See https://github.com/ComPWA/compwa-org/issues/90

</details>

0.12.0a1

See all documentation for this version [here](https://ampform.rtfd.io/en/0.12.0a1).

💡 New features

<details>
<summary>_numpycode() printer methods now use SymPy's module_imports (187)</summary>

Classes like `ArrayAxisSum` were specifically using statements like
python
printer.module_imports["numpy"].add("sum")

This is problematic in TensorWaves, which would like to see `"jnp"` and `"tnp"` there (the NumPy interfaces of JAX and TensorFlow). This PR makes this possible.

Another major improvements: `einsum` in `ArrayMultiplication` is used in such a way that `transpose` is not necessary anymore. In addition, an ellipsis return statement is specificied (`"...ij,...j->...i"` instead of `"...ij,...j"`), which [`tf.einsum`](https://www.tensorflow.org/api_docs/python/tf/einsum) requires.

</details>


🐛 Bug fixes

<details>
<summary>Minimum SymPy version set to v1.8 (185)</summary>

Google Colab comes with SymPy v1.7, which doesn't have the module `sympy.printing.numpy`. So at least SymPy v1.8 is required.

</details>


🖱️ Developer Experience

<details>
<summary>Notebooks can now be run with pytest (186)</summary>

See https://github.com/ComPWA/compwa-org/issues/90

</details>

0.12.0a0

See all documentation for this version [here](https://ampform.rtfd.io/en/0.12.0a0).

💡 New features

<details>
<summary>Kinematic variables are now expressed symbolically (177)</summary>

Closes 174

This PR implements [TR-011](https://compwa-org.readthedocs.io/en/stable/report/011.html). It merges the `ampform.data` module into `ampform.kinematics`. Most notably, the recursive helicity angles are now expressed as SymPy expressions, so that they can be computed with different computational back-ends.

</details>

<details>
<summary>Python 3.10 is now supported (172)</summary>

</details>


⚠️ Interface

<details>
<summary>implement_doit_method decorator does not take arguments anymore (178)</summary>

The `implement_doit_method` decorator was using one inline function layer too many. So now you have to write

python
implement_doit_method
class MyExpr(UnevaluatedExpression):
...


instead of

python
implement_doit_method()
class MyExpr(UnevaluatedExpression):
...


</details>

<details>
<summary>Renamed CoupledWidth to EnergyDependentWidth (150)</summary>

The `CoupledWidth` class has been renamed to `EnergyDependentWidth`.

`CoupledWidth` was a bit confusing. More common terms are mass/energy dependent width or running width.

</details>

<details>
<summary>Added HelicityModel.kinematics, removed HelicityModel.adapter (177)</summary>

Several changes to `HelicityModel` due to 177. Most notably, its `adapter` attribute has been removed in favour of `kinematics`, which is a `dict` of helicity angle `Symbol`s to `Expr`s in terms of four-momentum symbols

</details>


📝 Documentation

<details>
<summary>Links to Binder and Google Colab are now pinned for each version (179)</summary>

Branch name in `conf.py` is now extracted [from Read the Docs](https://docs.readthedocs.io/en/stable/builds.html) if possible. This way, all Binder/Colab links lead to the corresponding branch or tag of the repo.

</details>

0.11.7

_Back-ported fixes that were introduced in the lead-up to [v0.12.0](https://github.com/ComPWA/ampform/releases/tag/0.12.0)_

See all documentation for this version [here](https://ampform.rtfd.io/en/0.11.7).

🐛 Bug fixes

<details>
<summary>Allow installing any version of typing-extensions (191)</summary>

`TypeGuard` requires `typing-extensions` v3.10, which is not available to TensorFlow <2.7. With this PR, it is only required when doing style checks.

</details>

<details>
<summary>Minimum SymPy version set to v1.8 (185)</summary>

Google Colab comes with SymPy v1.7, which doesn't have the module `sympy.printing.numpy`. So at least SymPy v1.8 is required.

</details>

🔨 Internal maintenance

<details>
<summary>Importing ampform is about twice as fast now (189)</summary>

With https://github.com/ComPWA/qrules/pull/130 and f08f1f0, `import ampform` is about 2x as fast

</details>

<details>
<summary>Fixed ComplexSqrt __new__() method signature (187)</summary>

</details>

📝 Documentation

<details>
<summary>Links to Binder and Google Colab are now pinned for each version (179)</summary>

Branch name in `conf.py` is now extracted [from Read the Docs](https://docs.readthedocs.io/en/stable/builds.html) if possible. This way, all Binder/Colab links lead to the corresponding branch or tag of the repo.

</details>

0.11.5

_Final release before [AmpForm v0.12](https://github.com/ComPWA/ampform/milestone/19)._

See all documentation for this version [here](https://ampform.rtfd.io/en/0.11.5).

🔨 Internal maintenance

<details>
<summary>Narrowed down type hints (168)</summary>

* Improved some of the type hints
* Enforcing the use of [mypy error codes](https://mypy.readthedocs.io/en/stable/error_codes.html#silencing-errors-based-on-error-codes) (` type: ignore[error-code]`) with [flake8-type-ignore](https://gitlab.com/jonafato/flake8-type-ignore).

---

See also https://github.com/ComPWA/qrules/pull/114 and https://github.com/ComPWA/tensorwaves/pull/332

</details>

<details>
<summary>Removed CG latex fix (176)</summary>

This inline fix is not required anymore since https://github.com/sympy/sympy/pull/21769. This fix was released with [SymPy v1.9](https://github.com/sympy/sympy/wiki/release-notes-for-1.9).

Note that a minimum version for SymPy is not specified in `setup.cfg`. This is done on purpose because the fix is not crucial for performance of the helicity model building.
https://github.com/ComPWA/ampform/blob/5abe1f/setup.cfg#L48

</details>


📝 Documentation

<details>
<summary>Added Conda badge (169)</summary>

</details>


🖱️ Developer Experience

<details>
<summary>Error logs from myst-nb are now printed on GitHub Actions (170)</summary>

- The uploaded error logs are a bit of a pain to read and you have to download them first. This makes it a bit easier to inspect any errors.
- Fixes this problem: https://github.com/ComPWA/ampform/pull/170/checks?check_run_id=3950232038

</details>

<details>
<summary>Fixed comment syntax in .flake8 config (171)</summary>

The `.flake8` config file was using not using the same comment style as described in
https://flake8.pycqa.org/en/latest/user/configuration.html#project-configuration
Consequence not all errors were identified anymore.

</details>

0.11.4

See all documentation for this version [here](https://ampform.rtfd.io/en/0.11.4).

🐛 Bug fixes

<details>
<summary>Support pickling with SymPy v1.9 (164)</summary>

</details>


📝 Documentation

<details>
<summary>Embedded Zenodo metadata (165)</summary>

See https://github.com/ComPWA/compwa-org/issues/64

</details>

Page 6 of 10

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.