Fix building python3.6 wheels

This commit is contained in:
laggykiller 2024-02-25 12:20:56 +08:00
parent 361cefef93
commit c8a7e08bd2
2 changed files with 7 additions and 4 deletions

View file

@ -189,8 +189,11 @@ if __name__ == "__main__":
)
setup(
# name and version for building python 3.6 wheel
# With pyproject.toml, all are not necessary except ext_modules
# However, they are kept for building python 3.6 wheels
name="sqlcipher3-wheels",
version="0.5.2.post0",
package_dir={"sqlcipher3-wheels": "sqlcipher3"},
packages=["sqlcipher3-wheels"],
ext_modules=[module],
)