Skip to content

Commit dbe6cd3

Browse files
authored
Update __init__.py
1 parent 2e79546 commit dbe6cd3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pythonforandroid/recipes/aubio/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from pythonforandroid.recipe import CythonRecipe
1+
from pythonforandroid.recipe import PyProjectRecipe
22
from os.path import join
33

44

5-
class AubioRecipe(CythonRecipe):
5+
class AubioRecipe(PyProjectRecipe):
66
version = "0.4.7"
77
url = "https://aubio.org/pub/aubio-{version}.tar.bz2"
8-
depends = ["numpy"] # Make sure 'samplerate' is included as a dependency
8+
depends = ["numpy", "setuptools"] # Make sure 'samplerate' is included as a dependency
99
patches = [join("patches", "build_ext.patch")]
1010

1111

0 commit comments

Comments
 (0)