diff options
author | Colin Kennedy <colinvfx@gmail.com> | 2020-04-30 23:03:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 08:03:51 +0200 |
commit | b02f70a25ca89a3a43686b872831660d49bff84e (patch) | |
tree | 53c1308178136ad698e80d3d5b552dad62c258bd /setup.py | |
parent | 5d4bfa75d956cb426b5f714e6f4f4de366c15217 (diff) | |
download | astroid-git-b02f70a25ca89a3a43686b872831660d49bff84e.tar.gz |
Changed `python_requires` to use ">=" syntax (#780)
Closes #779
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ def install(): author=author, author_email=author_email, url=web, - python_requires=">=3.5.*", + python_requires=">=3.5", install_requires=install_requires, extras_require=extras_require, packages=find_packages(exclude=["tests"]) + ["astroid.brain"], |