From c81387fd26d2e1c9bdcb85f7d12a13cda1c389d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 14 May 2021 10:05:17 +0200 Subject: [PATCH] Support Python >= 3.6 --- README.rst | 3 +-- setup.py | 7 ++++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 9341969..94f1431 100644 --- a/README.rst +++ b/README.rst @@ -73,7 +73,7 @@ aiodns uses the MIT license, check LICENSE file. Python versions =============== -Python >= 3.5 are supported. +Python >= 3.6 are supported. Contributing @@ -82,4 +82,3 @@ Contributing If you'd like to contribute, fork the project, make a patch and send a pull request. Have a look at the surrounding code and please, make yours look alike :-) - diff --git a/setup.py b/setup.py index 7b80d41..7cdb4f6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def get_version(): license = "MIT", long_description = codecs.open("README.rst", encoding="utf-8").read(), long_description_content_type = "text/x-rst", - install_requires = ['pycares>=4.0.0', 'typing; python_version<"3.5"'], + install_requires = ['pycares>=4.0.0'], packages = ['aiodns'], platforms = ["POSIX", "Microsoft Windows"], classifiers = [ @@ -31,8 +31,9 @@ def get_version(): "Operating System :: Microsoft :: Windows", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7" + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9" ] )