From 59074c66ba6f616acbaf8ef4d0c59555f7067a5a Mon Sep 17 00:00:00 2001 From: David Danier Date: Tue, 1 Aug 2023 08:35:37 +0200 Subject: [PATCH] =?UTF-8?q?docs:=20=F0=9F=93=9A=20Add=20note=20about=20poe?= =?UTF-8?q?try=20compatibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index fbe5670..ebbdeb3 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,10 @@ Note that validation cannot happen during model creation, so you have to call `a yourself. This is due to the fact that `__init__()` will always be a sync method and you cannot sanely call async methods from sync methods. +**Note:** `pydantic-async-validation` is compatible with `pydantic` versions `2.x` only. It supports +Python `3.8`, `3.9`, `3.10` and `3.11`. This is also ensured running all tests on all those versions +using `tox`. + ## Example usage ```python