summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Kreussel <65088241+LLukas22@users.noreply.github.com>2023-10-29 14:44:05 +0100
committerGitHub <noreply@github.com>2023-10-29 13:44:05 +0000
commitc3f2676d4932daaa5aa7e1bb7faad343ad54d36e (patch)
treec003f70feb10f2b72ac13aa8d2c3fdb6cbacebe0
parent46d6566c99f63fc74f3fbf5754183a49219224d5 (diff)
downloadcandle-c3f2676d4932daaa5aa7e1bb7faad343ad54d36e.tar.gz
candle-c3f2676d4932daaa5aa7e1bb7faad343ad54d36e.tar.bz2
candle-c3f2676d4932daaa5aa7e1bb7faad343ad54d36e.zip
PyO3: Add CI to build & upload wheels as artifacts. (#1215)
* Add maturin ci * fix paths * Change sdist path
-rw-r--r--.github/workflows/maturin.ymlbin0 -> 5304 bytes
-rw-r--r--candle-pyo3/Cargo.toml2
2 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/maturin.yml b/.github/workflows/maturin.yml
new file mode 100644
index 00000000..1413f014
--- /dev/null
+++ b/.github/workflows/maturin.yml
Binary files differ
diff --git a/candle-pyo3/Cargo.toml b/candle-pyo3/Cargo.toml
index 0241d2b2..488404bf 100644
--- a/candle-pyo3/Cargo.toml
+++ b/candle-pyo3/Cargo.toml
@@ -19,7 +19,7 @@ candle = { path = "../candle-core", version = "0.3.0", package = "candle-core" }
candle-nn = { path = "../candle-nn", version = "0.3.0" }
half = { workspace = true }
intel-mkl-src = { workspace = true, optional = true }
-pyo3 = { version = "0.19.0", features = ["extension-module"] }
+pyo3 = { version = "0.19.0", features = ["extension-module", "abi3-py38"] }
[build-dependencies]
pyo3-build-config = "0.19"