Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Oct 30, 2024
1 parent afb0eb9 commit 66fd187
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ search = '__version__: str = "{current_version}"'
[tool.cibuildwheel]
build-verbosity = "1"
free-threaded-support = true
test-requires = ["pytest>=6", "importlib_metadata"]
test-requires = ["pytest>=6", "importlib_metadata", "exceptiongroup;python_version<'3.11'"]
test-command = "pytest -vsx {package}/tools/test_wheel.py"

[tool.cibuildwheel.linux]
Expand Down
4 changes: 4 additions & 0 deletions tests/test_asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
import zmq
import zmq.asyncio as zaio

if version_info < (3, 11):
from exceptiongroup import BaseExceptionGroup, ExceptionGroup


pytestmark = pytest.mark.anyio


Expand Down

0 comments on commit 66fd187

Please sign in to comment.