Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.1 KB

File metadata and controls

24 lines (17 loc) · 1.1 KB

Wren Core Python binding

This is a python binding for wren-core. It uses PyO3 to build the required wheel for ibis-server.

Developer Guide

Environment Setup

Test and build

After install casey/just, you can use the following command to build or test:

  • Execute just install to create Python venv and install dependencies.
  • Important: Before testing Python, you need to build the Rust package by running just develop.
  • Use just test-rs to test Rust only, and just test-py to test Python only.
  • Use just test to test Rust and Python.
  • Execute just build to build the Python package. You can find the wheel in the target/wheels/ directory.

Coding Style

Format via just format