The bindings could not build against the installed interpreter, so the whole workspace had to be checked with --exclude symclaw-python. Two API changes: PyObject left the prelude (now Py<PyAny>), and #[pyclass] types implementing Clone must opt in to the FromPyObject derive. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
20 lines
499 B
TOML
20 lines
499 B
TOML
[package]
|
|
name = "symclaw-python"
|
|
description = "Python bindings for SymClaw symbolic math engine"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
|
|
[lib]
|
|
name = "symclaw"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
symclaw-core = { path = "../symclaw-core" }
|
|
pyo3 = { version = "0.29", features = ["extension-module"] }
|
|
num-rational = { workspace = true }
|
|
ordered-float = { workspace = true }
|