From 969a46612bdba161402316eaaf5da1356a5ed386 Mon Sep 17 00:00:00 2001 From: Lioman Date: Sat, 28 Oct 2023 18:47:57 +0200 Subject: [PATCH] fix version string --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index da9deec18..c089f7b45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,8 @@ dependencies = [ "python-dateutil>=2.8", "rich>=10.1", "unidecode>=1.1", - "backports-zoneinfo<1.0.0,>=0.2.1; python_version<3.9", + "backports-zoneinfo<1.0.0,>=0.2.1;python_version<'3.9'", + ] [project.optional-dependencies] @@ -98,7 +99,10 @@ dev = [ ] [tool.pdm.build] -includes = [] +includes = ["THANKS", ] + +# [tool.pdm.build.wheel-data] +# include = [{path = "include/**/*.h", relative-to = "include/"}] [build-system] requires = ["pdm-backend"]