Skip to content

Commit 6ea542e

Browse files
authored
[3.12] Updates for Cython 3.1.1 (#10877)
closes #10849
1 parent cfe4269 commit 6ea542e

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
@@ -62,7 +62,7 @@ cryptography==45.0.2
6262
# via
6363
# pyjwt
6464
# trustme
65-
cython==3.0.12
65+
cython==3.1.1
6666
# via -r requirements/cython.in
6767
distlib==0.3.9
6868
# 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.12
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)