aio-libs / aiodns

Simple DNS resolver for asyncio
https://pypi.python.org/pypi/aiodns
MIT License
538 stars 69 forks source link

Fix Python version check #38

Closed jwilk closed 6 years ago

jwilk commented 6 years ago

sys.version[:3] won't return the right thing in Python 3.10. Use the sys.version_info tuple instead.

saghul commented 6 years ago

Thank you!