Skip to content

Commit ed3c507

Browse files
Bump pycares from 4.5.0 to 4.6.1 (#143)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: J. Nick Koston <[email protected]>
1 parent a5cc25c commit ed3c507

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aiodns/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def nameservers(self) -> Sequence[str]:
8080

8181
@nameservers.setter
8282
def nameservers(self, value: Sequence[str]) -> None:
83-
self._channel.servers = value
83+
self._channel.servers = value if isinstance(value, list) else list(value)
8484

8585
@staticmethod
8686
def _callback(fut: asyncio.Future, result: Any, errorno: int) -> None:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-e .
2-
pycares==4.5.0
2+
pycares==4.6.1
33
pytest==8.3.5
44
pytest-cov==6.1.1
55
uvloop==0.21.0; platform_system != "Windows" and implementation_name == "cpython"

0 commit comments

Comments
 (0)