File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 CIBW_BUILD : cp39-* cp310-* cp311-* cp312-* cp313-*
4444 CIBW_SKIP : " *-win32 *-manylinux_i686 pp*"
4545 CIBW_ARCHS_MACOS : " x86_64 arm64"
46+ # Set minimum macOS version to match OpenMP requirements
47+ CIBW_ENVIRONMENT_MACOS : >
48+ CMAKE_BUILD_PARALLEL_LEVEL=2
49+ OMP_NUM_THREADS=1
50+ MACOSX_DEPLOYMENT_TARGET=14.0
51+ CMAKE_OSX_DEPLOYMENT_TARGET=14.0
4652 CIBW_ARCHS_LINUX : " x86_64 aarch64"
4753 CIBW_ARCHS_WINDOWS : " AMD64"
4854
Original file line number Diff line number Diff line change @@ -412,6 +412,7 @@ def write_alignment(
412412
413413 # Use appropriate writer from io module (lazy import to avoid circular imports)
414414 from . import io
415+
415416 if mapped_format == "fasta" :
416417 io .write_fasta (sequences , output_file , ids = ids )
417418 elif mapped_format == "clustal" :
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ cmake.args = [
111111 " -DBUILD_PYTHON_MODULE=ON" ,
112112 " -DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
113113]
114- cmake .targets = [" _core" ]
114+ build .targets = [" _core" ]
115115
116116# Install settings
117117install.components = [" python" ]
You can’t perform that action at this time.
0 commit comments