Skip to content

Commit 711d236

Browse files
committed
-
1 parent afb0eb9 commit 711d236

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ search = '__version__: str = "{current_version}"'
147147
[tool.cibuildwheel]
148148
build-verbosity = "1"
149149
free-threaded-support = true
150-
test-requires = ["pytest>=6", "importlib_metadata"]
150+
test-requires = ["pytest>=6", "importlib_metadata", "exceptiongroup;python_version<'3.11'"]
151151
test-command = "pytest -vsx {package}/tools/test_wheel.py"
152152

153153
[tool.cibuildwheel.linux]

tests/test_asyncio.py

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
import zmq
1919
import zmq.asyncio as zaio
2020

21+
if sys.version_info < (3, 11):
22+
from exceptiongroup import BaseExceptionGroup, ExceptionGroup
23+
24+
2125
pytestmark = pytest.mark.anyio
2226

2327

0 commit comments

Comments
 (0)