-
Notifications
You must be signed in to change notification settings - Fork 65
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
ENH: Extension should be able to accept PathLike sources objects #237
Conversation
I've managed to fix the Windows tests and I started looking into the setuptools integration test failures. As it turns out, those are going to be harder to solve. I did start this branch to track some of the changes needed, but unfortunately, there's some pretty nasty code affecting paths. I'm thinking we're at least going to have to get Setuptools to the level of requiring All of this makes me think we may want to defer this work until we can get distutils properly embedded within setuptools, so we don't have to deal with these concerns across two repositories. |
A more compatible and more limited approach would be to just call |
That's a good suggestion. It would be incrementally better and would give users a better experience. |
ENH: Extension should be able to accept PathLike sources objects
This PR is a resubmit of #230.