From 28debdcb5ce7098852da0065ff009bc79546264a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 26 Apr 2022 00:07:28 +0200 Subject: Update YAML C extension check --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 84cae784b..f7e685f4e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -335,9 +335,9 @@ def check_yaml_c_exts(): """Make sure PyYAML C extensions are available on CI. Not available yet with a nightly Python, see: - https://github.com/yaml/pyyaml/issues/416 + https://github.com/yaml/pyyaml/issues/630 """ - if testutils.ON_CI and sys.version_info[:2] != (3, 10): + if testutils.ON_CI and sys.version_info[:2] != (3, 11): from yaml import CLoader # pylint: disable=unused-import -- cgit v1.2.3-54-g00ecf