Fix build
This commit is contained in:
parent
fff45e1d4b
commit
6284ca3b97
1 changed files with 13 additions and 1 deletions
14
setup.py
14
setup.py
|
|
@ -111,7 +111,16 @@ def check_zlib_required(conan_info: dict) -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def quote_argument(arg):
|
def quote_argument(arg):
|
||||||
q = '\\"' if sys.platform == "win32" and sys.version_info < (3, 7) else '"'
|
is_cibuildwheel = os.environ.get("CIBUILDWHEEL", "0") == "1"
|
||||||
|
|
||||||
|
if sys.platform == "win32" and (
|
||||||
|
(is_cibuildwheel and sys.version_info < (3, 7))
|
||||||
|
or (not is_cibuildwheel and sys.version_info < (3, 9))
|
||||||
|
):
|
||||||
|
q = '\\"'
|
||||||
|
else:
|
||||||
|
q = '"'
|
||||||
|
|
||||||
return q + arg + q
|
return q + arg + q
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
@ -180,5 +189,8 @@ if __name__ == "__main__":
|
||||||
)
|
)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
# name and version for building python 3.6 wheel
|
||||||
|
name="sqlcipher3",
|
||||||
|
version="0.5.2",
|
||||||
ext_modules=[module],
|
ext_modules=[module],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue