Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support building via PyPA/build #17

Merged
merged 4 commits into from
Sep 6, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Explicitly list packages in test build
Changes in setuptools automatic package discovery meant that building with the
build tool was failing because it didn't like the package structure in the
generated folders. Adding an empty list as the packages argument to `setup()`
solves this problem.
Ben Rowland committed Aug 4, 2022
commit f9bdd389f6e5a13e121a07e51e4a67873d81b492
2 changes: 1 addition & 1 deletion tests/test_tox_wheel.py
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ def testdir_pep517_build(testdir):
testdir.tmpdir.join('setup.py').write("""
from setuptools import setup

setup(name='foobar')
setup(name='foobar', packages=[])
""")
testdir.tmpdir.join('pyproject.toml').write("""
[build-system]