From 0976d2702792626ab18a63c709f1fdf14038c4f0 Mon Sep 17 00:00:00 2001 From: Luke Shingles Date: Sun, 27 Apr 2025 22:10:00 +0100 Subject: [PATCH] Fix missing project.version error for maturin >= 1.8 --- example/derive_expression/expression_lib/pyproject.toml | 1 + example/io_plugin/io_plugin/pyproject.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/example/derive_expression/expression_lib/pyproject.toml b/example/derive_expression/expression_lib/pyproject.toml index 607be31..1fe0f4a 100644 --- a/example/derive_expression/expression_lib/pyproject.toml +++ b/example/derive_expression/expression_lib/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "maturin" [project] name = "expression_lib" +dynamic = ["version"] requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/example/io_plugin/io_plugin/pyproject.toml b/example/io_plugin/io_plugin/pyproject.toml index afd86cf..2006416 100644 --- a/example/io_plugin/io_plugin/pyproject.toml +++ b/example/io_plugin/io_plugin/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "maturin" [project] name = "io_plugin" +dynamic = ["version"] requires-python = ">=3.10" classifiers = [ "Programming Language :: Rust",