Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (26 loc) · 611 Bytes

DEVELOPMENT.md

File metadata and controls

39 lines (26 loc) · 611 Bytes

DEVELOPMENT

Publish Developing Version

make clean

# Bump the version
make version

make pack

# publish to test.pypi.org
make publish-test

# publish to pypi.org
# make publish

Install Developing Version

sudo pip install \
    --no-deps \
    --no-cache \
    --upgrade \
    --index-url https://test.pypi.org/simple/ \
    pinject

TODO

  • @huan Keep version.py clean by setting VERSION = 0.0.0
  • @huan Only update version.py before publish to PyPI

SEE ALSO