From 81df619f2a5f5ad8734c8db20caaf35ecaca843f Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 18 Jan 2022 19:16:54 +0000 Subject: [PATCH] Drop warning filter for filelock poll_intervall Tox 20.11.0 corrected its use of filelock to stop passing the deprecated poll_intervall parameter in favor of its newer poll_interval, so we no longer need to filter the warning about it when using latest Tox. --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index b6b1917..b7c6986 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2021 mudpy authors. Permission to use, copy, +# Copyright (c) 2016-2022 mudpy authors. Permission to use, copy, # modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. @@ -39,15 +39,13 @@ basepython = python3 # setuptools._deprecation_warning.SetuptoolsDeprecationWarning "easy_install # command is deprecated. Use build and pip and other standards-based tools." # but only the message can be matched because the exception is private -# filelock raises DeprecationWarning "use poll_interval instead of -# poll_intervall" # pip._vendor.certifi.core and pip._vendor.pep517.in_process raise # DeprecationWarning "path is deprecated. Use files() instead. Refer to # https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy # for migration advice." but this can't be matched by message because it # contains a colon setenv = - PYTHONWARNINGS = error, ignore::FutureWarning:Cython.Compiler.Main, ignore::DeprecationWarning:distutils.command.install, ignore:The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives:DeprecationWarning, ignore:Creating a LegacyVersion has been deprecated and will be removed in the next major release:DeprecationWarning, ignore:SelectableGroups dict interface is deprecated. Use select.:DeprecationWarning:flake8.plugins.manager, ignore:setup.py install is deprecated. Use build and pip and other standards-based tools., ignore:easy_install command is deprecated. Use build and pip and other standards-based tools., ignore:use poll_interval instead of poll_intervall:DeprecationWarning, ignore::DeprecationWarning:pip._vendor.certifi.core, ignore::DeprecationWarning:pip._vendor.pep517.in_process + PYTHONWARNINGS = error, ignore::FutureWarning:Cython.Compiler.Main, ignore::DeprecationWarning:distutils.command.install, ignore:The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives:DeprecationWarning, ignore:Creating a LegacyVersion has been deprecated and will be removed in the next major release:DeprecationWarning, ignore:SelectableGroups dict interface is deprecated. Use select.:DeprecationWarning:flake8.plugins.manager, ignore:setup.py install is deprecated. Use build and pip and other standards-based tools., ignore:easy_install command is deprecated. Use build and pip and other standards-based tools., ignore::DeprecationWarning:pip._vendor.certifi.core, ignore::DeprecationWarning:pip._vendor.pep517.in_process VIRTUALENV_CREATOR = venv commands = mudpy_selftest mudpy/tests/fixtures/test_daemon.yaml deps = {toxinidir} -- 2.11.0