From 5d1987fed21ad0f59574e8f7c7917f6c6d83ed94 Mon Sep 17 00:00:00 2001 From: Timur Bazhirov <timur@exabyte.io> Date: Thu, 25 Jan 2024 11:48:15 -0800 Subject: [PATCH] chore: resolve the package naming --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e3573fa63..3bb4892af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,11 @@ build-backend = "setuptools.build_meta" [tool.setuptools_scm] git_describe_command = "git describe --tags --long" -local_scheme = "no-local-version" +# Consider the below to allow for versions like 2024.1.25.post5.dev1' +# https://github.com/pypa/setuptools_scm/issues/342#issuecomment-1233118020 +# This won't require a git tag to be present before each publish. +# See https://github.com/Exabyte-io/actions/blob/main/py/publish/action.yml#L47 also. +# local_scheme = "no-local-version" [tool.setuptools.packages.find] where = ["src/py"]