Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 448 Bytes

DEV.md

File metadata and controls

35 lines (24 loc) · 448 Bytes

Notes for developers

Install dependencies

  • Install Rust with help of rustup (https://rustup.rs/)
  • Install Pythons dependencies:
    python3 -m pip install .[dev] 

Build Rust library

Debug version

maturin develop

Optimized version

maturin develop --release --strip

Run tests

pytest

Build release wheels and sdist

maturin build --release --strip