Skip to content

Commit

Permalink
fix(ci): ignore DeprecationWarning raised by mypy on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyWood committed Jun 7, 2021
1 parent 8b79ceb commit 2820a92
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ filterwarnings =
error
ignore::DeprecationWarning:distutils
ignore::DeprecationWarning:Cython
# for python 3.10+: mypy still relies on distutils on windows. We hence ignore those warnings
ignore:The distutils package is deprecated and slated for removal in Python 3.12:DeprecationWarning
ignore:The distutils.sysconfig module is deprecated, use sysconfig instead:DeprecationWarning

[flake8]
max-line-length = 120
Expand Down

0 comments on commit 2820a92

Please sign in to comment.