-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,10 +35,10 @@ | |
entry_points['console_scripts'] = ['pynvim=neovim.ui.cli:main [GUI]'] | ||
|
||
setup(name='neovim', | ||
version='0.1.0', | ||
version='0.1.1', | ||
description='Python client to neovim', | ||
url='http://github.com/neovim/python-client', | ||
download_url='https://github.com/neovim/python-client/archive/0.1.0.tar.gz', | ||
download_url='https://github.com/neovim/python-client/archive/0.1.1.tar.gz', | ||
author='Thiago de Arruda', | ||
author_email='[email protected]', | ||
license='Apache', | ||
|
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ping @tarruda could you update the version at PyPI? (or if you prefer, I could take maintenance of the PyPI package)
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bfredl let me see how I can register you as maintainer
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is your pypi username?
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the same, bfredl
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bfredl added you as owner
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok,
twine upload -r pypi dist/neovim-0.1.1.tar.gz
should do it right ?02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I use
python setup.py sdist upload -r pypi
. You also need a .pypirc containing something like this:With the above configuration you can also test if the publish works as expected with
python setup.py sdist upload -r pypitest
. More information:http://peterdowns.com/posts/first-time-with-pypi.html02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes I did the test with
pypitest
before. Though it seems I accidentiallyscreen.c
(setup.py clean
did not remove it ...) should I remove it and replace the uploaded.tar.gz
?02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you just uploaded to pypitest then you simply need to remove the extra file before sending to pypi. If you already pushed to pypi then I think you may need to bump another version(not sure if it is possible to replace a version in pypi)
02503c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, uploaded 0.1.2