Remove obsolete warning suppression from pyproject.toml

This commit is contained in:
Jake VanderPlas 2023-05-03 13:16:41 -07:00
parent d84d19b7d1
commit 13f7291ff6

View File

@ -56,24 +56,16 @@ markers = [
filterwarnings = [
"error",
"ignore:No GPU/TPU found, falling back to CPU.:UserWarning",
"ignore:outfeed_receiver is unnecessary and deprecated:DeprecationWarning",
"ignore:xmap is an experimental feature and probably has bugs!",
"ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning",
"ignore:can't resolve package from __spec__ or __package__:ImportWarning",
"ignore:Using or importing the ABCs.*:DeprecationWarning",
"ignore:numpy.ufunc size changed",
"ignore:.*experimental feature",
"ignore:index.*is deprecated.*:DeprecationWarning",
"ignore:jax.experimental.* is deprecated, import jax.example_libraries.* instead:FutureWarning",
"ignore:The distutils.* is deprecated.*:DeprecationWarning",
"ignore:`sharded_jit` is deprecated. Please use `pjit` instead.*:DeprecationWarning",
"default:Error reading persistent compilation cache entry for 'jit__lambda_'",
"default:Error writing persistent compilation cache entry for 'jit__lambda_'",
"ignore:DeviceArray, ShardedDeviceArray, and GlobalDeviceArray have been deprecated.*:DeprecationWarning",
"ignore:backend and device argument on jit is deprecated.*:DeprecationWarning",
"ignore:GlobalDeviceArray has been deprecated.*:DeprecationWarning",
# TODO(skyewm, yashkatariya): Remove after jaxlib 0.4.7 is released.
"ignore:jax.interpreters.pxla.ShardedDeviceArray is deprecated.*:DeprecationWarning"
]
doctest_optionflags = [
"NUMBER",