Skip to content

Commit 95491e8

Browse files
committed
Add back 3.8, 3.9 and 3.10 support
This reverts commit a556127.
1 parent aa88a6a commit 95491e8

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

pyee/asyncio.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# -*- coding: utf-8 -*-
22

33
from asyncio import AbstractEventLoop, ensure_future, Future, iscoroutine, wait
4-
from typing import Any, Callable, cast, Dict, Optional, Self, Set, Tuple
4+
from typing import Any, Callable, cast, Dict, Optional, Set, Tuple
55

66
from pyee.base import EventEmitter
77

8+
Self = Any
9+
810
__all__ = ["AsyncIOEventEmitter"]
911

1012

pyee/base.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
List,
1010
Mapping,
1111
Optional,
12-
Self,
1312
overload,
1413
Set,
1514
Tuple,
1615
TypeVar,
1716
Union,
1817
)
1918

19+
Self = Any
20+
2021

2122
class PyeeException(Exception):
2223
"""An exception internal to pyee. Deprecated in favor of PyeeError."""

pyee/executor.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
from concurrent.futures import Executor, Future, ThreadPoolExecutor
44
from types import TracebackType
5-
from typing import Any, Callable, Dict, Optional, Self, Tuple, Type
5+
from typing import Any, Callable, Dict, Optional, Tuple, Type
66

77
from pyee.base import EventEmitter
88

9+
Self = Any
10+
911
__all__ = ["ExecutorEventEmitter"]
1012

1113

pyee/trio.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
AsyncGenerator,
88
Awaitable,
99
Callable,
10+
cast,
1011
Dict,
1112
Optional,
12-
Self,
1313
Tuple,
1414
Type,
1515
)
@@ -18,6 +18,8 @@
1818

1919
from pyee.base import EventEmitter, PyeeError
2020

21+
Self = Any
22+
2123
__all__ = ["TrioEventEmitter"]
2224

2325

@@ -124,7 +126,7 @@ async def __aenter__(self: Self) -> "TrioEventEmitter":
124126
self._context: Optional[AbstractAsyncContextManager["TrioEventEmitter"]] = (
125127
self.context()
126128
)
127-
return await self._context.__aenter__()
129+
return await cast(Any, self._context).__aenter__()
128130

129131
async def __aexit__(
130132
self: Self,

pyee/twisted.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
from typing import Any, Callable, Dict, Optional, Self, Tuple
3+
from typing import Any, Callable, cast, Dict, Optional, Tuple
44

55
from twisted.internet.defer import Deferred, ensureDeferred
66
from twisted.python.failure import Failure
@@ -13,6 +13,9 @@
1313
iscoroutine = None # type: ignore
1414

1515

16+
Self = Any
17+
18+
1619
__all__ = ["TwistedEventEmitter"]
1720

1821

@@ -92,6 +95,6 @@ def _emit_handle_potential_error(self: Self, event: str, error: Any) -> None:
9295
else:
9396
self.emit("error", PyeeError(f"Unexpected failure object: {error}"))
9497
else:
95-
(super(TwistedEventEmitter, self))._emit_handle_potential_error(
98+
cast(Any, super(TwistedEventEmitter, self))._emit_handle_potential_error(
9699
event, error
97100
)

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ classifiers = [
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
2427
"Programming Language :: Python :: 3.11",
2528
"Programming Language :: Python :: 3.12",
2629
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)