Skip to content

Commit 8215ec7

Browse files
committed
Revert "fix: drop uvloop"
This reverts commit 81f5029.
1 parent da2b286 commit 8215ec7

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test = [
4444
"pytest-env>=1.2.0",
4545
"pytest-xdist>=3.8.0",
4646
"pytest-timeout>=2.4.0",
47-
"uvloop>=0.21.0; python_version < '3.14'", # FIXME: uvloop not yet compatible with 3.14
47+
"uvloop>=0.21.0",
4848
"typed-diskcache[asyncio]",
4949
]
5050
dev = [

src/tests/conftest.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import annotations
22

33
import shutil
4-
import sys
54
import uuid
65
from typing import Any
76

@@ -14,9 +13,7 @@
1413
params=[
1514
pytest.param(("asyncio", {"use_uvloop": False}), id="asyncio"),
1615
pytest.param(("asyncio", {"use_uvloop": True}), id="asyncio-uvloop"),
17-
]
18-
if sys.version_info < (3, 14) # FIXME: uvloop not yet compatible with 3.14
19-
else [pytest.param(("asyncio", {"use_uvloop": False}), id="asyncio")],
16+
],
2017
scope="session",
2118
)
2219
def anyio_backend(request: pytest.FixtureRequest) -> tuple[str, dict[str, Any]]:

0 commit comments

Comments
 (0)