Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions eng/tools/azure-sdk-tools/packaging_tools/sdk_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,18 @@ def main(generate_input, generate_output):
_LOGGER.info(
f"[CODEGEN]({readme_or_tsp})codegen end and new package '{folder_name}/{package_name}' generated"
)

# update `setuptools>=77.0.3` to `setuptools>=83.0.0` of pyproject.toml
pyproject_path = Path(sdk_folder, folder_name, package_name, "pyproject.toml")
if pyproject_path.exists():
with open(pyproject_path, "r") as f:
pyproject_content = f.read()
pyproject_content = pyproject_content.replace("setuptools>=77.0.3", "setuptools>=83.0.0")
Comment on lines +237 to +242
with open(pyproject_path, "w") as f:
f.write(pyproject_content)
_LOGGER.info(f"update setuptools version in {pyproject_path} to >=83.0.0")
else:
_LOGGER.warning(f"pyproject.toml not found in {pyproject_path}, cannot update setuptools version")

# remove additional files when we roll back generation to Swagger
# NOTE: After we convert to Typespec completely, we could remove this logic block
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 41.6.0 (2026-08-06)

tool can't generate changelog for this release, please update manually.

## 41.6.0b1 (2026-07-24)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"apiVersion": "2026-05-02-preview",
"apiVersion": "2026-05-01",
"apiVersions": {
"Microsoft.ContainerService": "2026-05-02-preview"
"Microsoft.ContainerService": "2026-05-01"
},
"commit": "00f0e0e39d642c91cb706e0aa5bda169e9b84129",
"commit": "08114bc9f1add13140ca2508e4b0796479325eab",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/containerservice/resource-manager/Microsoft.ContainerService/aks",
"emitterVersion": "0.63.3",
"httpClientPythonVersion": "^0.34.2"
"httpClientPythonVersion": "^0.35.1"
}
Loading
Loading