-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Rust compiler requires python 2.7 #30618
Comments
We do not have a github wiki anymore, where did you find this? |
Hi Steve, I found the github wiki page at: On Tue, Dec 29, 2015 at 3:52 PM, Steve Klabnik notifications@github.com
|
I think @Slowhand5 refers to the README: https://github.com/rust-lang/rust/blob/master/README.md#building-from-source |
Ah ha! Thanks, I will send a fix. |
Where in ./configure is 2.7 required? It seems it accepts both 2.6 and 2.7. |
Our Python situation is really confusing. The As if all that wasn't bad enough, we have a number of Python scripts in Honestly I would be in favor of just requiring 2.7 regardless of whether anything even needs it. Just to make all this confusion stop. |
presently:
script: On Wed, Dec 30, 2015 at 5:32 AM, rkruppe notifications@github.com wrote:
|
Ah, this error is from LLVM's configure script, not from Rust's. Ours should be updated to correctly check for 2.7, since LLVM apparently requires it1. Someone could check if our LLVM build even requires Python (as mentioned before, the docs say it's only needed for tests, which we don't run). If not, maybe (if all of Rust's Python scripts work on 2.6) building with Python 2.6 could still be supported. |
Just to be clear, is the github site no longer used for Rust? If not, On Tue, Dec 29, 2015 at 4:56 PM, est31 notifications@github.com wrote:
|
There is a difference between the GitHub repository and the GitHub wiki. GitHub offers wikis for the projects it hosts, but Rust does not use that capability any more. Rust still uses and will continue to use GitHub for development, issue tracking, etc. — only the wiki is not used any more. For comparison, here is a random example of what GitHub wiki looks like: https://github.com/nim-lang/Nim/wiki |
👍 for not supporting Python 2.6 (which is no longer maintained by the PSF) |
The "Building from Source" instructions on the github wiki page specify that the rust compiler requires
python 2.6 or later, however the ./configure script says that python 2.7 is required.
The text was updated successfully, but these errors were encountered: