-
Notifications
You must be signed in to change notification settings - Fork 306
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
Switch the default to uploading using Warehouse #177
Conversation
Is PyPI being replaced by Warehouse (new name and site and everything?) Or is Warehouse going to be the new internals for PyPI and users won't care? |
Warehouse is the name of the software for what will power PyPI 2.0, the site name is still going to be "PyPI" (unless Brett Cannon or someone else decides to push for a rename). It will use a new URL though, instead of |
Oh, and as you might have guessed from this PR, uploading to the new code base uses a dedicated domain, |
So what does this mean for the pypi section in ~/.pypirc? |
This PR will make twine default to Warehouse if that pypi section does not have an explicit Of course, people can opt into this today by adding an explicit |
So they can start using warehouse now by adding the following to their .pypirc file and calling with -r warehouse ? Will the "/legacy/" part of the url go away in the future? [warehouse] |
Yes that can start using it now by doing that, and no it won't go away-- the |
and will it use the same username and password as their current pypi? |
also, is there a warehouse version of "testpypi"? |
Yes, Warehouse and Legacy PyPI share a database-- so they're quite literally just two different views over the same data.
|
Triggering a new merged build on Travis |
Thank you again @dstufft and @annaraven for pulling that information out of Donald. =D |
You're quite welcome. I'm good at asking stupid questions. ;-) |
Per Twine issue 177. pypa/twine#177 Also, corrected how to register, to clarify you must specify the file, not use glob. Per Twine issue 176. pypa/twine#176
This should be a better experience for people, might want to wait on merging this though until it gets some more people using it optionally.