Skip to content

Commit cc12fe9

Browse files
Use wait_readable from AnyIO (#12)
1 parent 7ac0d3a commit cc12fe9

File tree

4 files changed

+4
-395
lines changed

4 files changed

+4
-395
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Check with mypy and ruff
2929
if: ${{ (matrix.python-version == '3.13') && (matrix.os == 'ubuntu-latest') }}
3030
run: |
31-
mypy src
31+
mypy src/zmq_anyio
3232
ruff format --check src
3333
ruff check src
3434
- name: Run tests

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ classifiers = [
2727
]
2828
requires-python = ">= 3.9"
2929
dependencies = [
30-
"anyio",
31-
"sniffio",
30+
"anyio >=4.7.0,<5.0.0",
3231
"anyioutils >=0.4.6",
3332
"pyzmq >=26.0.0,<27.0.0",
3433
]

0 commit comments

Comments
 (0)