From 77b4216e89dd8a3e19b60ed9f856940d90bc46e1 Mon Sep 17 00:00:00 2001 From: Kale Kundert Date: Fri, 8 Dec 2023 00:23:07 -0500 Subject: [PATCH] chore: ignore deprecation warnings caused by datetime/arrow --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9d673c9..c980d90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,10 @@ ignore = ["F405", "F403", "E401", "E501", "E721"] addopts = "--ignore docs --doctest-modules --doctest-glob='*.rst'" doctest_optionflags = 'NORMALIZE_WHITESPACE' markers = ["slow"] -filterwarnings = ["error"] +filterwarnings = [ + "error", + 'ignore:datetime\.datetime\..* is deprecated:DeprecationWarning', +] [tool.semantic_release] version_variable = 'parametrize_from_file/__init__.py:__version__'