Skip to content

Commit 5a7eca5

Browse files
authored
Fix issue w/ azure-sdk-tools pyproject.toml/MANIFEST.in (#42792)
* fix issue with pyproject.oml getting built and includeded on itself over and over and over again
1 parent c4f970d commit 5a7eca5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

eng/tools/azure-sdk-tools/MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
include ci_tools/deps.html.j2
1+
include ci_tools/deps.html.j2
2+
prune build

eng/tools/azure-sdk-tools/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ include-package-data = true
6060

6161
[tool.setuptools.packages.find]
6262
where = ["."]
63-
exclude = ["tests*"]
63+
exclude = ["tests*", "build*"]
6464

6565
[tool.black]
6666
line-length=120

0 commit comments

Comments
 (0)