Skip to content

Commit

Permalink
Changed python_requires to use ">=" syntax (#780)
Browse files Browse the repository at this point in the history
Closes #779
  • Loading branch information
ColinKennedy authored and PCManticore committed May 1, 2020
1 parent c305cc4 commit 370459d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,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?
============================
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 370459d

Please sign in to comment.