Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (26 loc) · 663 Bytes

RELEASE.md

File metadata and controls

31 lines (26 loc) · 663 Bytes

How To Make A Release

mkdir release
cd release
rm -rf gamma-viewer

git clone [email protected]:ranking-agent/gamma-viewer.git
cd gamma-viewer

You may also want to consider making a fresh environment.

python -m venv ~/.venv/gamma_viewer
source ~/.venv/gamma_viewer/bin/activate
pip install -e .

You need to have setuptools, wheel, and twine installed via pip.

pip install -r requirements-dev.txt

Release on PyPi

Make sure you bump the version number in setup.py

git clean -dfx
python setup.py sdist bdist_wheel
twine upload dist/*

Then make a pull request with the bumped version as well as make a release tag