-
-
Notifications
You must be signed in to change notification settings - Fork 241
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
Fix setup.py #175
Fix setup.py #175
Conversation
'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Unordered types are not allowed
Uh, when did pip change in this manner? |
I encountered the same behavior recently. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Thanks!
Looks like we also have to fix (or ignore) this new |
I could fix the flake8 error simply enough. The remaining Travis-CI failure is Python 3.3, because pytest dropped support with version 3.3.0, released about 2 weeks ago. Should support for Python 3.3 be dropped here too? Alternately, pytest could be pinned to v3.2.5, but I don't know enough about tox to pull that off myself. |
Changing line 7 in
should do the trick. Unfortunately there's also a problem with
in |
@SpotlightKid see #180 for an alternate way of dealing with the requirement issue. |
This is preventing me from installing the AUR version, it just fails with Mind publishing a new release if this fixed it? |
Tried to install the project (
pip install -e .
) and it broke with the following error:This pull request is a one-line change to return the requirements as a tuple rather than a set, and thus allow the project to install.
I'm on Python 3.6.3 on Windows 10 x64.