CHANGELOG: update test_util deprecation discussion

This commit is contained in:
Jake VanderPlas 2022-04-21 13:37:56 -07:00
parent f1104cf8d5
commit a05c97be3f

View File

@ -31,8 +31,11 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
`format_shape_dtype_string`, `rand_uniform`, `skip_on_devices`, `with_config`, `xla_bridge`, and
`_default_tolerance` ({jax-issue}`#10389`). These, along with previously-deprecated `JaxTestCase`,
`JaxTestLoader`, and `BufferDonationTestCase`, will be removed in a future JAX release.
Many of these utilities still exist in `jax._src.test_util`, but these are not public APIs and
as such may be changed or removed without notice.
Most of these utilites can be replaced by calls to standard python & numpy testing utilities found
in e.g. {mod}`unittest`, {mod}`absl.testing`, {mod}`numpy.testing`, etc. JAX-specific functionality
such as device checking can be replaced through the use of public APIs such as {func}`jax.devices`.
Many of the deprecated utilities will still exist in {mod}`jax._src.test_util`, but these are not
public APIs and as such may be changed or removed without notice in future releases.
## jaxlib 0.3.8 (Unreleased)
* [GitHub