Skip to content

Latest commit

 

History

History

ep039

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Just a quick version bump and upload and the steps I take to do that.

Setup commands

virtualenv venv

. venv/bin/activate

pip install twine

git clone git@github.com:<your_github_username>/<package_name>

Interactive examples

Bash

cd <package_name>
git show v1.4.16

nano setup.cfg
git status
git diff
git add -u
git commit -m 'v1.4.17'
git tag !$
git show

python setup.py sdist bdist_wheel
twine upload -r pypi dist/<package_name>-1.4.17*

git push origin HEAD --tags