Skip to content

Commit

Permalink
Include all vendored files in the sdist.
Browse files Browse the repository at this point in the history
Closes #4480
  • Loading branch information
jaraco committed Jul 18, 2024
1 parent 284e8af commit 65e00b6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ recursive-include setuptools *.py *.exe *.xml *.tmpl
recursive-include tests *.py
recursive-include setuptools/tests *.html
recursive-include docs *.py *.txt *.rst *.conf *.css *.css_t Makefile indexsidebar.html
recursive-include setuptools/_vendor *.py *.txt
recursive-include setuptools/_vendor *
recursive-include pkg_resources *.py *.txt
recursive-include pkg_resources/tests/data *
recursive-include tools *
Expand Down
1 change: 1 addition & 0 deletions newsfragments/4480.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Include all vendored files in the sdist.
1 change: 0 additions & 1 deletion setuptools/tests/test_setuptools.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ def test_wheel_includes_cli_scripts(setuptools_wheel):
assert any('cli-64.exe' in member for member in contents)


@pytest.mark.xfail(reason="#4480")
def test_wheel_includes_vendored_metadata(setuptools_wheel):
with ZipFile(setuptools_wheel) as zipfile:
contents = [f.replace(os.sep, '/') for f in zipfile.namelist()]
Expand Down

0 comments on commit 65e00b6

Please sign in to comment.