diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2023-02-12 13:02:00 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2023-02-12 13:16:34 -0500 |
commit | c8a6a4a1c97f267faef01c0db879ea599dfc0e11 (patch) | |
tree | 2d4164dd330a9a3bc4c3d7ca724be8ef0c0413ee | |
parent | 07a9cd6b25f727b49f5f13c60b19d3a929803811 (diff) | |
download | python-setuptools-git-c8a6a4a1c97f267faef01c0db879ea599dfc0e11.tar.gz |
Do not error on EncodingWarning. Instead emit them like usual. Ref #3810
-rw-r--r-- | pytest.ini | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -78,3 +78,8 @@ filterwarnings= # https://github.com/pypa/setuptools/issues/3655 ignore:The --rsyncdir command line argument and rsyncdirs config variable are deprecated.:DeprecationWarning + + # Workarounds for pypa/setuptools#3810 + # Can't use EncodingWarning as it doesn't exist on Python 3.9 + default:'encoding' argument not specified + default:UTF-8 Mode affects locale.getpreferredencoding(). |