From 2ebc2c647eafce3036d12814b0247cdd55e0be4d Mon Sep 17 00:00:00 2001 From: Martino Mensio Date: Tue, 11 Apr 2023 00:19:05 +0200 Subject: [PATCH] fixed python 3.11 on musllinux (#184) --- Cargo.toml | 3 --- pyproject.toml | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d28cc66..b8e68c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,6 @@ license = "MIT" readme = "README.md" -[package.metadata.maturin] -name = "jellyfish._rustyfish" - # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "jellyfish" diff --git a/pyproject.toml b/pyproject.toml index b11cea5..08e1912 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,3 +24,4 @@ repository = "https://github.com/jamesturk/jellyfish/" [tool.maturin] features = ["pyo3/extension-module", "python"] python-source = "python" +module-name = "jellyfish._rustyfish"