-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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 setuptools bootstrapping now that dependencies are no longer vendored #3198
Conversation
Yeah I think this is the best thing It seems like this issue / change may bring about even more changes to many python packages. AKA it's worth remembering that, if for some That would probably be very painful to achieve, but that was my understanding of what this change actually means -- Very unrelated, that discussion mentions that build dependencies may very well be coming to |
No no, this PR just removes In no way would I suggest wholesale removing |
It looks like someone beat me to it for appdirs: |
The Python guys sure are trying really hard to make themselves impossible to package. This approach seems like a reasonable way to do things. Although it's kind of annoying that the Python guys assume some kind of circular bootstrapping is going to happen here. It would be nice to delegate to
Wheels are also problematic per (2). @svenevs: I don't think we can remove |
Like I said, I could be misunderstanding, but it seemed like that's the direction things are heading. Aka instead of |
@adamjstewart: do all of the current |
I don't think we can do that for all the |
And someone beat me to it for pyparsing too: Glad other people are aware of the problem. Btw, I didn't even notice that six depends on pyparsing as a runtime dependency until the setuptools installation crashed, so hopefully there aren't any other random dependencies we are missing. |
@tgamblin All of the packages I just converted to use |
Oh dear. I mean I'm the very first person to completely ditch Windows support, but that seems really bad! Anywho, I was more suggesting that instead of people having to specify This is a topic that is well beyond my python knowledge -- I'm still trying to wrap my head around Forcing Does that make sense? It's basically adding another meta layer to the python package people inherit from to write |
@svenevs: we could think about how we might add a @adamjstewart's much improved |
Oh yeah that's way better! Everything stays explicit, so no voodoo magic going on behind the scenes, and a best-faith-effort to use the "right" |
…ored (spack#3198) * Fix setuptools bootstrapping now that dependencies are no longer vendored * Reorder patch and comments * Use exact same patch as ActiveState/appdirs#84 * Use exact same patch as https://sourceforge.net/p/pyparsing/patches/10/
…ored (spack#3198) * Fix setuptools bootstrapping now that dependencies are no longer vendored * Reorder patch and comments * Use exact same patch as ActiveState/appdirs#84 * Use exact same patch as https://sourceforge.net/p/pyparsing/patches/10/
…ored (#3198) * Fix setuptools bootstrapping now that dependencies are no longer vendored * Reorder patch and comments * Use exact same patch as ActiveState/appdirs#84 * Use exact same patch as https://sourceforge.net/p/pyparsing/patches/10/
…ored (spack#3198) * Fix setuptools bootstrapping now that dependencies are no longer vendored * Reorder patch and comments * Use exact same patch as ActiveState/appdirs#84 * Use exact same patch as https://sourceforge.net/p/pyparsing/patches/10/
@tgamblin @svenevs This fixes the bug I introduced in #3195.
Based on the
CHANGES.rst
that comes withsetuptools
:it looks like
setuptools
no longer supports any installation method aside frompip
. All of its dependencies usesetuptools
, making it very difficult to build from source. I had to hack a couple packages to provide a fallback (distutils.core
) so that they could build without setuptools. I'll see if I can get these patches merged upstream.