Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 620 Bytes

development.rst

File metadata and controls

46 lines (28 loc) · 620 Bytes

Development setup

Clone repository:

git clone https://github.com/lukashedegaard/continual-inference.git
cd ride

Install extended dependencies:

pip install -e .[build,dev,docs]
npm install -g katex

Run tests:

make test

Build docs

cd docs
make html

Build and publish to TestPyPI:

make clean
make testbuild
make testpublish

Build and publish to PyPI:

make clean
make build
make publish