fix: arguments for setup.py
This commit is contained in:
parent
0cba23b248
commit
9f66b5cfc1
@ -8,7 +8,7 @@ yum install -y zlib-devel
|
|||||||
ln -fs /usr/local/bin/cmake /usr/bin/cmake
|
ln -fs /usr/local/bin/cmake /usr/bin/cmake
|
||||||
|
|
||||||
|
|
||||||
ALL_PYTHON="cp36-cp36m" # cp37-cp37m cp38-cp38"
|
ALL_PYTHON="cp39-cp39 cp310-cp310 cp311-cp311"
|
||||||
|
|
||||||
# Compile wheels
|
# Compile wheels
|
||||||
for pkg in $ALL_PYTHON; do
|
for pkg in $ALL_PYTHON; do
|
||||||
|
4
setup.py
4
setup.py
@ -2,6 +2,7 @@ import stat
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
|
from sysconfig import get_config_var
|
||||||
from distutils.command.install_data import install_data
|
from distutils.command.install_data import install_data
|
||||||
import pathlib
|
import pathlib
|
||||||
from setuptools import find_packages, setup, Extension
|
from setuptools import find_packages, setup, Extension
|
||||||
@ -168,8 +169,7 @@ class BuildCMakeExt(build_ext):
|
|||||||
self.spawn(['bash', 'build.sh', '--build-dir', self.build_temp,
|
self.spawn(['bash', 'build.sh', '--build-dir', self.build_temp,
|
||||||
f"--python={sys.executable}", "--c-compiler", c_compiler,
|
f"--python={sys.executable}", "--c-compiler", c_compiler,
|
||||||
"--cxx-compiler", cxx_compiler, '--purge',
|
"--cxx-compiler", cxx_compiler, '--purge',
|
||||||
'--skip-building-tests', '--hades-python', '--install-system-python',
|
'--hades-python', '--install-system-python',
|
||||||
'--deprecated',
|
|
||||||
'--extra-flags', f"-DPYTHON_SITE_PACKAGES={install_dir} -DINSTALL_COMPATIBILITY_PYBORG=OFF -DINSTALL_SHARED=ON -DDATA_INSTALL_DIR={install_dir}/aquila_borg/_data"
|
'--extra-flags', f"-DPYTHON_SITE_PACKAGES={install_dir} -DINSTALL_COMPATIBILITY_PYBORG=OFF -DINSTALL_SHARED=ON -DDATA_INSTALL_DIR={install_dir}/aquila_borg/_data"
|
||||||
])
|
])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user