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 | |
parent | 5d4bfa75d956cb426b5f714e6f4f4de366c15217 (diff) | |
download | astroid-git-b02f70a25ca89a3a43686b872831660d49bff84e.tar.gz |
Changed `python_requires` to use ">=" syntax (#780)
Closes #779
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -21,6 +21,10 @@ Release Date: TBA Close PyCQA/pylint#3540 Close #773 +* Changed setup.py to work with [distlib](https://pypi.org/project/distlib) + + Close #779 + What's New in astroid 2.4.0? ============================ @@ -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"], |