Skip to content

Commit b48427b

Browse files
committed
[3.11] Updates for Cython 3.1.1 (#10877)
closes #10849 (cherry picked from commit 6ea542e)
1 parent b84417d commit b48427b

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGES/10877.packaging.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed compatibility issue with Cython 3.1.1 -- by :user:`bdraco`

aiohttp/_websocket/reader_py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def exception(self) -> Optional[BaseException]:
7979

8080
def set_exception(
8181
self,
82-
exc: "BaseException",
82+
exc: BaseException,
8383
exc_cause: builtins.BaseException = _EXC_SENTINEL,
8484
) -> None:
8585
self._eof = True

requirements/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ cryptography==43.0.3
6161
# via
6262
# pyjwt
6363
# trustme
64-
cython==3.0.11
64+
cython==3.1.1
6565
# via -r requirements/cython.in
6666
distlib==0.3.9
6767
# via virtualenv

requirements/cython.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-r multidict.in
22

3-
Cython
3+
Cython >= 3.1.1

requirements/cython.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# pip-compile --allow-unsafe --output-file=requirements/cython.txt --resolver=backtracking --strip-extras requirements/cython.in
66
#
7-
cython==3.0.11
7+
cython==3.1.1
88
# via -r requirements/cython.in
99
multidict==6.4.3
1010
# via -r requirements/multidict.in

0 commit comments

Comments
 (0)