Skip to content

Commit

Permalink
Tell setuptools that we are using the limited API
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Oct 6, 2022
1 parent d57e503 commit acafa09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def build_extension(self, ext):
],
packages=["frida", "_frida"],
package_data={"frida": ["py.typed"], "_frida": ["py.typed", "__init__.pyi"]},
ext_modules=[Extension("_frida", [])],
ext_modules=[Extension("_frida", [], py_limited_api=True)],
cmdclass={"build_ext": FridaPrebuiltExt},
zip_safe=False,
)

0 comments on commit acafa09

Please sign in to comment.