myosuite/__init__.py
setup.py
.github/CHANGELOG.md
docs/source/conf.py
git tag v0.0.2
something
git commit -m "[something] 0.0.2 release"
something
git push --tags origin [branch]
python3 setup.py bdist_wheel --universal
python3 -m twine upload --repository pypi dist/*
conda create --name test_myosuite python=3.7.1
conda activate test_myosuite
pip install myosuite
python3 -c "import myosuite; print(f'MyoSuite version: {myosuite.__version__}')"
python3 myosuite/tests/test_myo.py
conda deactivate
conda remove --name test_myosuite --all
Visit this page and create the newly tagged release.