From 3c9b5204d3b99bcfb8421efb525ac72968212746 Mon Sep 17 00:00:00 2001 From: "Michael Mainer (from Dev Box)" <8527305+MIchaelMainer@users.noreply.github.com> Date: Thu, 11 Jun 2026 16:49:10 -0700 Subject: [PATCH 1/2] chore: remove pinned metadata version and license-files comment from pyproject.toml --- pyproject.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c9abd461009..84cb7f308e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,11 +6,6 @@ build-backend = "flit_core.buildapi" [project] name = "msgraph-beta-sdk" -# Pin metadata to 2.3 until ESRP Release supports License-Expression over the -# deprecated License field. Update License to License-Expression when unpinning -# metadata version. -metadata-version = 2.3 - # The SDK version # x-release-please-start-version version = "1.59.0" @@ -28,7 +23,8 @@ dependencies = [ ] requires-python = ">=3.10" license = "MIT" -license-files = ["LICENSE"] +# Add this back when we upgrade flit and ESRP Release supports latest metadata. +# license-files = ["LICENSE"] readme = "README.md" keywords = ["msgraph", "openAPI", "Microsoft", "Graph", "beta"] classifiers = [ From acaa8fa6c1be3165dc0026cabd695a1fba512fb5 Mon Sep 17 00:00:00 2001 From: "Michael Mainer (from Dev Box)" <8527305+MIchaelMainer@users.noreply.github.com> Date: Thu, 11 Jun 2026 17:11:18 -0700 Subject: [PATCH 2/2] chore: update license format in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 84cb7f308e5..f14507c3b9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ dependencies = [ ] requires-python = ">=3.10" -license = "MIT" +license = {text = "MIT"} # Add this back when we upgrade flit and ESRP Release supports latest metadata. # license-files = ["LICENSE"] readme = "README.md"