From f654f17a5f7abf7b768889b553c5b56b7b50b5c2 Mon Sep 17 00:00:00 2001 From: "Nickolaus D. Saint" Date: Mon, 8 Jun 2026 15:28:28 -0700 Subject: [PATCH 1/2] fix: Build and release error in Gladier Source files were not properly being put in place for the build --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a7448ba..4af4a4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "gladier" -version = "0.10.0b3" +version = "0.10.0b4" authors = [ { name = "Globus Professional Services Team", email = "support@globus.org" }, ] @@ -49,7 +49,7 @@ test = [ build = ["build", "twine"] [tool.setuptools.packages.find] -where = ["gladier"] +where = ["."] namespaces = false @@ -61,7 +61,7 @@ testpaths = ["gladier/tests/"] [tool.coverage.run] parallel = true -source = ["gladier"] +source = ["."] # omit must be specified in a way which matches the # tox environment installations, so lead with `**` omit = [] From 20129c197ecd4793f83e3ed346d8c31fb2ea8a60 Mon Sep 17 00:00:00 2001 From: "Nickolaus D. Saint" Date: Mon, 8 Jun 2026 15:32:55 -0700 Subject: [PATCH 2/2] chore: Fix warning in build These values were present before, but caused issues on earlier python versions --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4af4a4d..217bfb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,8 @@ dependencies = [ "fair-research-login>=0.2.6", "pydantic>=1.0", ] -license = { file = "LICENSE" } +license = "Apache-2.0" +license-files = ["LICENSE"] [project.readme] file = "README.rst"