From 84e0e0928c15a8be7e12d1fee8724f48dfce4f66 Mon Sep 17 00:00:00 2001 From: Rodrigo Saffie Date: Fri, 22 Sep 2023 12:58:40 -0300 Subject: [PATCH] Add support for python3.11, drop support for python 3.7 --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9c1eeee43..f00c62bdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,6 @@ python = "^3.8" jsonschema = "^4.4" [tool.poetry.dev-dependencies] -# Starting from Python 3.8, asynctest is replaced with a unittest.mock.AsyncMock in standard library. -asynctest = { version = "0.13.0", python = "~3.7" } pytest = "^7" pytest-asyncio = "^0.20.3" pytest-cov = "^4.0.0"