Skip to content

Commit b02f70a

Browse files
authored
Changed python_requires to use ">=" syntax (#780)
Closes #779
1 parent 5d4bfa7 commit b02f70a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ Release Date: TBA
2121
Close PyCQA/pylint#3540
2222
Close #773
2323

24+
* Changed setup.py to work with [distlib](https://pypi.org/project/distlib)
25+
26+
Close #779
27+
2428

2529
What's New in astroid 2.4.0?
2630
============================

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def install():
4444
author=author,
4545
author_email=author_email,
4646
url=web,
47-
python_requires=">=3.5.*",
47+
python_requires=">=3.5",
4848
install_requires=install_requires,
4949
extras_require=extras_require,
5050
packages=find_packages(exclude=["tests"]) + ["astroid.brain"],

0 commit comments

Comments
 (0)