Skip to content

Commit

Permalink
Fix missing pedalboard.io module in PyPI package.
Browse files Browse the repository at this point in the history
  • Loading branch information
psobot committed Mar 15, 2022
1 parent 4f85cbd commit 7b1952c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pedalboard/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

MAJOR = 0
MINOR = 5
PATCH = 0
PATCH = 1

__version__ = "%d.%d.%d" % (MAJOR, MINOR, PATCH)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,6 @@ def build_extensions(self, *args, **kwargs):
],
ext_modules=[pedalboard_cpp],
install_requires=['numpy'],
packages=['pedalboard'],
packages=['pedalboard', 'pedalboard.io'],
cmdclass={"build_ext": BuildC_CxxExtensions},
)

0 comments on commit 7b1952c

Please sign in to comment.