Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bfredl committed Feb 25, 2016
1 parent 2cb624e commit 02503c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

10 comments on commit 02503c6

@bfredl
Copy link
Member Author

@bfredl bfredl commented on 02503c6 Feb 25, 2016

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)

@tarruda
Copy link
Member

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

@tarruda
Copy link
Member

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?

@bfredl
Copy link
Member Author

@bfredl bfredl commented on 02503c6 Feb 25, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the same, bfredl

@tarruda
Copy link
Member

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

@bfredl
Copy link
Member Author

@bfredl bfredl commented on 02503c6 Feb 25, 2016

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 ?

@tarruda
Copy link
Member

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:

[distutils]
index-servers =
  pypi
  pypitest

[pypi]
repository=https://pypi.python.org/pypi
username=your_username
password=your_password

[pypitest]
repository=https://testpypi.python.org/pypi
username=your_username
password=your_password

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.html

@bfredl
Copy link
Member Author

@bfredl bfredl commented on 02503c6 Feb 25, 2016

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 accidentially screen.c (setup.py clean did not remove it ...) should I remove it and replace the uploaded .tar.gz ?

@tarruda
Copy link
Member

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)

@bfredl
Copy link
Member Author

@bfredl bfredl commented on 02503c6 Feb 25, 2016

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

Please sign in to comment.