Skip to content

Commit bf3c68c

Browse files
committed
MAINT: removed unneeded warning filters
As of today with an up-to-date environment, they are not required anymore. I guess some versions of libraries above minimal requirement will still produce warnings but the goal of those filter warnings is to make our test runs (on developers machine and CI) clean (to avoid missing legitimate warnings drowned by known warnings). And for those test we usually only care about latest versions.
1 parent e5e16fa commit bf3c68c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ filterwarnings = [
4040
"error",
4141
# as of version 3.1.2, openpyxl uses datetime.datetime.utcnow() which is deprecated in Python 3.12
4242
"ignore::DeprecationWarning:openpyxl.*:",
43-
"ignore::DeprecationWarning:pyreadline.*:",
44-
"ignore::DeprecationWarning:pywintypes.*:",
45-
"ignore::DeprecationWarning:tables.*:",
4643
"ignore:Special variable 'x' is deprecated.*:FutureWarning:inspect.*:",
4744
"ignore:Special variable 'x' is deprecated.*:FutureWarning:_pytest.compat.*:",
4845
]

0 commit comments

Comments
 (0)