Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 439 Bytes

new_release.md

File metadata and controls

23 lines (19 loc) · 439 Bytes

Making a New Release

  • create and upload a new github tag
  • version++ for 'version' and 'download url'
 setup(
    # ...
    version='0.1.26',
    # ...
    download_url='https://github.com/joshbrooks/django_viewedmodels/archive/0.1.26.tar.gz',
    )
  • add a github tag == version
  • run these commands:
python setup.py bdist_wheel --universal
python setup.py sdist
twine upload dist/*