From 71b844700b86cc9b59a43b8e56df21a57512b58f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Oct 2025 15:50:15 +0000 Subject: [PATCH 1/2] Initial plan From d0b85566a21afee71c29382c5a1137a7d54bcb6f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Oct 2025 15:58:06 +0000 Subject: [PATCH 2/2] Remove CHANGELOG.md references from uv and poetry templates Co-authored-by: dbanty <43723790+dbanty@users.noreply.github.com> --- .../docstrings-on-attributes-golden-record/pyproject.toml | 2 +- end_to_end_tests/golden-record/pyproject.toml | 2 +- end_to_end_tests/literal-enums-golden-record/pyproject.toml | 2 +- end_to_end_tests/metadata_snapshots/poetry.pyproject.toml | 2 +- end_to_end_tests/metadata_snapshots/uv.pyproject.toml | 3 --- end_to_end_tests/test-3-1-golden-record/pyproject.toml | 2 +- openapi_python_client/templates/pyproject_poetry.toml.jinja | 2 +- openapi_python_client/templates/pyproject_uv.toml.jinja | 3 --- 8 files changed, 6 insertions(+), 12 deletions(-) diff --git a/end_to_end_tests/docstrings-on-attributes-golden-record/pyproject.toml b/end_to_end_tests/docstrings-on-attributes-golden-record/pyproject.toml index 07c716afc..d3fd8e4d7 100644 --- a/end_to_end_tests/docstrings-on-attributes-golden-record/pyproject.toml +++ b/end_to_end_tests/docstrings-on-attributes-golden-record/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" packages = [ { include = "my_test_api_client" }, ] -include = ["CHANGELOG.md", "my_test_api_client/py.typed"] +include = ["my_test_api_client/py.typed"] [tool.poetry.dependencies] python = "^3.10" diff --git a/end_to_end_tests/golden-record/pyproject.toml b/end_to_end_tests/golden-record/pyproject.toml index 07c716afc..d3fd8e4d7 100644 --- a/end_to_end_tests/golden-record/pyproject.toml +++ b/end_to_end_tests/golden-record/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" packages = [ { include = "my_test_api_client" }, ] -include = ["CHANGELOG.md", "my_test_api_client/py.typed"] +include = ["my_test_api_client/py.typed"] [tool.poetry.dependencies] python = "^3.10" diff --git a/end_to_end_tests/literal-enums-golden-record/pyproject.toml b/end_to_end_tests/literal-enums-golden-record/pyproject.toml index 29ac69407..a83d5f1ad 100644 --- a/end_to_end_tests/literal-enums-golden-record/pyproject.toml +++ b/end_to_end_tests/literal-enums-golden-record/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" packages = [ { include = "my_enum_api_client" }, ] -include = ["CHANGELOG.md", "my_enum_api_client/py.typed"] +include = ["my_enum_api_client/py.typed"] [tool.poetry.dependencies] python = "^3.10" diff --git a/end_to_end_tests/metadata_snapshots/poetry.pyproject.toml b/end_to_end_tests/metadata_snapshots/poetry.pyproject.toml index 5acd73c5e..202b9d360 100644 --- a/end_to_end_tests/metadata_snapshots/poetry.pyproject.toml +++ b/end_to_end_tests/metadata_snapshots/poetry.pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" packages = [ { include = "test_3_1_features_client" }, ] -include = ["CHANGELOG.md", "test_3_1_features_client/py.typed"] +include = ["test_3_1_features_client/py.typed"] [tool.poetry.dependencies] python = "^3.10" diff --git a/end_to_end_tests/metadata_snapshots/uv.pyproject.toml b/end_to_end_tests/metadata_snapshots/uv.pyproject.toml index 9f56cf5c5..46751fa8f 100644 --- a/end_to_end_tests/metadata_snapshots/uv.pyproject.toml +++ b/end_to_end_tests/metadata_snapshots/uv.pyproject.toml @@ -14,9 +14,6 @@ dependencies = [ [tool.uv.build-backend] module-name = "test_3_1_features_client" module-root = "" -data = [ - "CHANGELOG.md", -] [build-system] requires = ["uv_build>=0.8.0,<0.9.0"] diff --git a/end_to_end_tests/test-3-1-golden-record/pyproject.toml b/end_to_end_tests/test-3-1-golden-record/pyproject.toml index 5acd73c5e..202b9d360 100644 --- a/end_to_end_tests/test-3-1-golden-record/pyproject.toml +++ b/end_to_end_tests/test-3-1-golden-record/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" packages = [ { include = "test_3_1_features_client" }, ] -include = ["CHANGELOG.md", "test_3_1_features_client/py.typed"] +include = ["test_3_1_features_client/py.typed"] [tool.poetry.dependencies] python = "^3.10" diff --git a/openapi_python_client/templates/pyproject_poetry.toml.jinja b/openapi_python_client/templates/pyproject_poetry.toml.jinja index 1b7e5abf3..8585b6d89 100644 --- a/openapi_python_client/templates/pyproject_poetry.toml.jinja +++ b/openapi_python_client/templates/pyproject_poetry.toml.jinja @@ -7,7 +7,7 @@ readme = "README.md" packages = [ { include = "{{ package_name }}" }, ] -include = ["CHANGELOG.md", "{{ package_name }}/py.typed"] +include = ["{{ package_name }}/py.typed"] [tool.poetry.dependencies] python = "^3.10" diff --git a/openapi_python_client/templates/pyproject_uv.toml.jinja b/openapi_python_client/templates/pyproject_uv.toml.jinja index 5c714c6f4..16395df63 100644 --- a/openapi_python_client/templates/pyproject_uv.toml.jinja +++ b/openapi_python_client/templates/pyproject_uv.toml.jinja @@ -14,9 +14,6 @@ dependencies = [ [tool.uv.build-backend] module-name = "{{ package_name }}" module-root = "" -data = [ - "CHANGELOG.md", -] [build-system] requires = ["uv_build>=0.8.0,<0.9.0"]