You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wants to run on host or at least with docker; potentially build _pyapsi and then move outside of docker?
also uses quay.io manylinux base images; but seems to use manylinux2014 not most recent one manylinux_2_24_x86_64, can be overwritten with env CIBW_MANYLINUX_X86_64_IMAGE=quay.io/pypa/manylinux_2_24_x86_64
fails with CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool. bceause vcpkg is located in /tmp/ (note, environment variable used in setup.py for vcpkg root dir doesn't seem to be propagated to cibuildwheel dockers)
flatc seems to require GLIBCXX_3.4.26 which is not present in the manylinux docker
following the pybind11 example workflow seems to work for build_sdist, but also just seems to package sources (likely missing important bits)
setup.py build is deprecated, but python -m build conflicts with current cmake setup
alternative to pre-built: add apsi as submodule, figure out how to patch AVX during/before build, and then have folks do VCPKG_ROOT_DIR=/path/to/vcpkg pip install git+https://github.com/LGro/PyAPSI.git
upload to pypi on tag
The text was updated successfully, but these errors were encountered:
manylinux1
compatible wheels https://peps.python.org/pep-0513/#rationalemanylinux2014
not most recent onemanylinux_2_24_x86_64
, can be overwritten with envCIBW_MANYLINUX_X86_64_IMAGE=quay.io/pypa/manylinux_2_24_x86_64
CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool.
bceausevcpkg
is located in/tmp/
(note, environment variable used in setup.py for vcpkg root dir doesn't seem to be propagated to cibuildwheel dockers)flatc
seems to requireGLIBCXX_3.4.26
which is not present in the manylinux dockerbuild_sdist
, but also just seems to package sources (likely missing important bits)setup.py build
is deprecated, butpython -m build
conflicts with current cmake setupVCPKG_ROOT_DIR=/path/to/vcpkg pip install git+https://github.com/LGro/PyAPSI.git
The text was updated successfully, but these errors were encountered: