- Notifications
You must be signed in to change notification settings - Fork121
Try to give example of raise in setup.py#128
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
_practicalities/intro.md Outdated
| Python{py} detected. | ||
| Try upgrading pip and retry. | ||
| """.format(py=sys.version_info) |
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.
The Python version doesn't print correctly for me under Python 2. Can you check?
I see:
Python sys.version_info(major=2, minor=7, micro=14, releaselevel='final', serial=0) detected.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.
Perhaps:
""".format(py='.'.join([str(v) for v in sys.version_info[:3]])) |Python 3, or install an older version of scikit-image usingThere 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.
updated.
cc@stefanv