From 341dbce2d57b4178bd3bcfacf586c627bd6a76bd Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 20 Aug 2023 23:16:10 -0700 Subject: [PATCH] Fix error on pydantic 1.10.2 - refs #169 --- pytest.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 5ffe8f15..8658fc91 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,4 @@ [pytest] filterwarnings = - ignore::pydantic.main.PydanticDeprecatedSince20 \ No newline at end of file + ignore:The `schema` method is deprecated.*:DeprecationWarning + ignore:Support for class-based `config` is deprecated*:DeprecationWarning \ No newline at end of file