Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove warning filters that are no longer needed for testing #2536

Merged
merged 3 commits into from
Oct 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,24 +129,13 @@ filterwarnings = [
"error",
"ignore:numpy\\.ufunc size changed:RuntimeWarning",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to keep the ufunc one. It comes up once in a while depending on how CI installed stuff and in what order.

"ignore:numpy\\.ndarray size changed:RuntimeWarning",
"ignore:distutils Version classes are deprecated:DeprecationWarning",
"ignore:Passing unrecognized arguments to super:DeprecationWarning",
"ignore:.*With traitlets 4\\.1, metadata should be set using the \\.tag\\(\\) method:DeprecationWarning",
"ignore:Widget.* is deprecated:DeprecationWarning",
"ignore:zmq\\.eventloop\\.ioloop is deprecated in pyzmq:DeprecationWarning",
"ignore:The unit 'Angstrom' has been deprecated in the VOUnit standard\\. Suggested.* 0\\.1nm\\.",
"ignore:specutils uses the deprecated entry point asdf_extensions",
"ignore:((.|\n)*)Sentinel is not a public part of the traitlets API((.|\n)*)",
"ignore:datetime\\.datetime\\.utcfromtimestamp:DeprecationWarning", # asdf + dateutil<=2.8.2 + Python 3.12
"ignore::DeprecationWarning:glue",
"ignore::DeprecationWarning:bqplot",
"ignore::DeprecationWarning:bqplot_image_gl",
"ignore::DeprecationWarning:bqscales",
"ignore::DeprecationWarning:traittypes",
"ignore::DeprecationWarning:voila",
"ignore::DeprecationWarning:asteval",
"ignore::DeprecationWarning:dask",
"ignore::FutureWarning:asteval",
"ignore:::specutils.spectra.spectrum1d",
# Ignore numpy 2.0 warning, see https://github.com/astropy/astropy/pull/15495
# and https://github.com/scipy/scipy/pull/19275
Expand Down