-
Notifications
You must be signed in to change notification settings - Fork 7
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
python setup.py <anything> is deprecated #37
Comments
Given this deprecation, doing a local user install of a module wouldn't work unless the pip metadata was somehow included as well? In short, pykern-enabled modules REQUIRE installation using pip? I haven't seen anything in a lot of the package guides on how to programaticaly block this using functions in setup.py, but there has to be some way. |
The point of this issue is to move out testing and doc generation from setup.py. Not a rush, because I doubt it will come through. Installation via pip is not required. Just make sure that |
pypa/setuptools#1684 talks about deprecating
python setup.py test
and all other arguments. The plan is to use tox, which we use for testing, but it's unwieldy for other things, like deployment.Migrate the code out of pysetup into another tool that supports deployment, documentation, etc.
Read the docs build process should be looked, because it calls python setup.py. Perhaps there's a way to just call an arbitrary command or have setup.py do that instead. see https://github.com/rtfd/readthedocs.org/tree/master/readthedocs/doc_builder
See https://github.com/jaraco/skeleton
The text was updated successfully, but these errors were encountered: