From c00380ea9c89f892edc0f2fc0ffd99af76612082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 6 Apr 2022 22:12:38 +0300 Subject: [PATCH] test(tox): install frozenlist without extensions on Python 3.11 for now Similarly as aiohttp and yarl, frozenlist C bits don't compile against 3.11 at the moment. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c5d4b68..73c3245 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,6 +63,8 @@ setenv = AIOHTTP_NO_EXTENSIONS = 1 # https://github.com/aio-libs/yarl/issues/680 YARL_NO_EXTENSIONS = 1 + # Similarly as for aiohttp and yarl + FROZENLIST_NO_EXTENSIONS = 1 # https://github.com/certifi/python-certifi/issues/170#issuecomment-952885966 PYTEKUKKO_CERTIFI_IMPORTLIB_RESOURCES_PATH_W = -W "default:path is deprecated:DeprecationWarning:certifi.core" [testenv:pyston3]