-
Notifications
You must be signed in to change notification settings - Fork 337
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
rez-pip cannot install astroid 2.2.0 for Python 3.6 #876
Comments
SummaryLooks like a problem with astroid itself. I'll take it up with their maintainers DetailsTracking this down a bit. The issue comes from astroid (not any of its dependencies) Here's a copy of its metadata
Specifically this line Then checking out def install():
return setup(name = distname,
# ...
python_requires='>=3.4.*',
# ...
) I know nothing about distlib / setup.py beyond the basics but it looks like PEP-440 doesn't support this syntax. |
I tried installing astroid 2.2.0, which is a dependency of pylint
astroid 2.2.0 fails but
rez-pip --install astroid==2.1.0 --python-version=3.6
does work. So there may be some change between astroid version 2.1.0 and 2.2.0 which rez-pip does not currently support.rez: 2.56.1 (tried with both a Python 3.6 and 2.7 install of Rez both fail with the same error)
python: 3.6 / 2.7
os: CentOS-7.7.1908
The text was updated successfully, but these errors were encountered: