Skip to content

Commit dbe1841

Browse files
authored
Add extension-module pyo3 feature (#19)
1 parent bcba2b2 commit dbe1841

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

CHANGELOG_PYTHON.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2.4.2 2025-06-16
4+
5+
### Changed
6+
7+
* Include pyo3 extension-module feature to resolve build issues on linux
8+
39
## 2.4.1 2025-06-16
410

511
### Changed

CHANGELOG_RUST.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2.4.2 2025-06-16
4+
5+
### Changed
6+
7+
* Include pyo3 extension-module feature to resolve build issues on linux
8+
39
## 2.4.1 2025-06-16
410

511
### Changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cfsem"
3-
version = "2.4.1"
3+
version = "2.4.2"
44
edition = "2024"
55
authors = ["Commonwealth Fusion Systems <jlogan@cfs.energy>"]
66
license = "MIT"
@@ -15,7 +15,7 @@ name = "cfsem"
1515
crate-type = ["cdylib", "rlib"]
1616

1717
[dependencies]
18-
pyo3 = { version="0.25.1", optional=true }
18+
pyo3 = { version="0.25.1", features=["extension-module"], optional=true }
1919
numpy = { version="0.25.0", optional=true } # This must match pyo3 version!
2020

2121
nalgebra = "^0.33.2"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "cfsem"
7-
version = "2.4.1"
7+
version = "2.4.2"
88
description = "Quasi-steady electromagnetics including filamentized approximations, Biot-Savart, and Grad-Shafranov."
99
authors = [{name = "Commonwealth Fusion Systems", email = "jlogan@cfs.energy"}]
1010
requires-python = ">=3.9, <3.14"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)