Fix source distribution package (sdist)#47649
Merged
dargilco merged 3 commits intoJun 24, 2026
Merged
Conversation
howieleung
approved these changes
Jun 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There are two packages: the one that gets installed with "pip install" (the .whl file). This only includes the python files. The other package is the source distribution (*.tar.gz), which includes python files, samples, tests and any relevant docs (license, change log, readme). Both can be download from https://pypi.org/project/azure-ai-projects/#files .
You get the first one by running:
python -m build --wheelYou get the second one by running:
python -m build --sdistI noticed that we include some *.md files in this source distribution package that should not be there. I also noticed that we did not include the additional files needed to run some of the samples and tests (samples\assets folder was missing and tests\test_data folder was missing)
In this PR I moved the temporary report file
evaluation-typespec-issues.mdinto thedocsfolder, so it won't be picked up in the source distribution package.I then edited MANIFSET.in to make sure everything in the tests and samples folder gets picked up. That file is used to configure what's included in the software distribution package. After the change, the *.tar.gz package include these files/folders (and I see tests\test_data and samples\asserts folders there as well):