-
Notifications
You must be signed in to change notification settings - Fork 13
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
Invalid environment marker: python_version<"2.7" due to extra colon #22
Comments
See issue #21 - the : is valid, but your setuptools is too old. |
I actually have the same problem:
So, funcsigs installs setuptools-24.0.2, but fails on |
Do you have any clues to solve this? As far as I can see, funcsigs installs setuptools-24.0.2, so should work with |
Demand-installed setuptools won't work because setuptools is already loaded when the dependencies are processed; with a pyproject.toml it should work but that hasn't been implemented into pip etc yet. With 'python_version<"2.7"' that becomes the name of an extra, rather than a conditional dependency - the semantics are entirely different. |
An erroneous colon in 6848ca8, the fix to #18, causes setup.py to fail:
The text was updated successfully, but these errors were encountered: