Skip to content

Commit

Permalink
Support Python >= 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed May 14, 2021
1 parent 5748500 commit c81387f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 :-)

7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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"
]
)

0 comments on commit c81387f

Please sign in to comment.