Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make pythonize dependency optional
  • Loading branch information
prehner committed Apr 7, 2025
commit 371022bb2610911fb0d5ed3a6dc8bcf8db0f92ce
11 changes: 9 additions & 2 deletions feos-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,17 @@ rayon = { version = "1.5", optional = true }
typenum = "1.16"
approx = "0.5"
regex = "1.9"
pythonize = "0.23.0"
pythonize = { version = "0.23", optional = true }
itertools = "0.14"

[features]
default = []
rayon = ["dep:rayon", "ndarray/rayon"]
python = ["pyo3", "numpy", "quantity/python", "num-dual/python_macro", "rayon"]
python = [
"pyo3",
"numpy",
"pythonize",
"quantity/python",
"num-dual/python_macro",
"rayon",
]
Loading