https://github.com/google/jax
Raw File
Tip revision: 6af476900ab1e300c2fc07a06b950102df593f26 authored by Matthew Johnson on 15 September 2020, 15:00:47 UTC
update version and changelog for pypi (#4294)
Tip revision: 6af4769
pytest.ini
[pytest]
filterwarnings =
    error
    ignore:No GPU/TPU found, falling back to CPU.:UserWarning
    ignore:Explicitly requested dtype.*is not available.*:UserWarning
    ignore:jax.experimental.vectorize is deprecated.*:FutureWarning
    ignore:outfeed_receiver is unnecessary and deprecated:DeprecationWarning
    # The rest are for experimental/jax_to_tf
    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
doctest_optionflags = NUMBER NORMALIZE_WHITESPACE
addopts = --doctest-glob="*.rst"

back to top