Skip to content
Ling Li edited this page Feb 2, 2020 · 3 revisions

Welcome to the drf-tracking wiki!

Release procedure

Update the file: rest_framework_tracking/__init__.py with updated version number commit to repo and create a new tag with the same version number run:

python setup.py sdist

If you have not installed the dependencies you can do so with pipenv:

python3 -m venv ~/venv/drf
source ~/venv/drf/bin/activate
python3 -m pip install pipfile 
pipenv install 

then using twine (pipenv install twine)

twine upload dist/* 

You may need to update you keyring on linux and also be permissioned to the repo in pypi.org.

Clone this wiki locally