Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed python_requires to use ">=" syntax #780

Merged
merged 3 commits into from
May 1, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ What's New in astroid 2.5.0?
Release Date: TBA


What's New in astroid 2.4.2?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this, 2.4.1 has not been released yet.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah whoops. I'll move it to 2.4.1

============================
Release Date: TBA

* Changed setup.py to work with [distlib](https://pypi.org/project/distlib)


What's New in astroid 2.4.1?
============================
Release Date: TBA
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() + ["astroid.brain"],
Expand Down