From b530b1af9a89a85e370c6eb57ac7e10d3e16a97c Mon Sep 17 00:00:00 2001 From: Matthias Valvekens Date: Sat, 4 Jan 2025 00:40:27 +0900 Subject: [PATCH] Unblock pytest-asyncio upgrades Pin the dependency to an older release for testing against 3.8 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5f4c7f5b..64c0effa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,9 +80,10 @@ testing-basic = [ "pytest>=6.1.1", "requests-mock>=1.8.0", "freezegun>=1.1.0", - "pytest-asyncio==0.24.0", "certomancer>=0.12.3,<0.13", "pytest-cov>=4.0,<6.1", + "pytest-asyncio==0.24.0;python_version<\"3.9\"", + "pytest-asyncio==0.25.1;python_version>=\"3.9\"", "backports.zoneinfo[tzdata];python_version<\"3.9\"", ] testing = [