From d01daaf9512ac56669554cd82017332da050fb5c Mon Sep 17 00:00:00 2001 From: snek <31628566+Jovvik@users.noreply.github.com> Date: Sat, 4 Jan 2025 14:13:54 +0300 Subject: [PATCH] maturin fixes (#235) * remove invalid tool.maturin.python-source path * add dynamic version to pyproject.toml --- src/python/pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/python/pyproject.toml b/src/python/pyproject.toml index ec0c5222..7d2deaca 100644 --- a/src/python/pyproject.toml +++ b/src/python/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "maturin" [project] name = "demoparser2" +dynamic = ["version"] requires-python = ">=3.8" dependencies = ["pandas>=1.5.0", "numpy", "polars", "pyarrow", "tqdm"] classifiers = [ @@ -20,7 +21,4 @@ protobuf = "3.1.0" path = "./csgoproto" [profile.dev] -overflow-checks = false - -[tool.maturin] -python-source = "src/python" \ No newline at end of file +overflow-checks = false \ No newline at end of file