Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 351 Bytes

RELEASE.md

File metadata and controls

18 lines (18 loc) · 351 Bytes

Release Notes

  1. Run tests
make .venv
source venv/bin/activate
export PYTHONPATH=/path/to/Fractal
cd tests/
pytest -vvs
  1. Update library version in setup.py
  2. Generate new docs (more info in docs/README.md)
  3. Deploy package at PyPi:
pip install setuptools
python setup.py sdist bdist_wheel
pip install twine
twine upload dist/*