Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: py3.11 can't find boost #44

Merged
merged 1 commit into from
Jan 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
"""

import glob
import os
import sys
from ctypes.util import find_library
from pathlib import Path

import numpy
from setuptools import Extension, setup
Expand All @@ -26,11 +28,33 @@ def get_boost_libraries():
raise RuntimeError("Cannot find a suitable Boost.Python library.")


def get_boost_config():
boost_path = os.environ.get("BOOST_PATH", "")
if boost_path:
inc = Path(boost_path) / "include"
lib = Path(boost_path) / "lib"
else:
conda_prefix = os.environ.get("CONDA_PREFIX")
if not conda_prefix:
raise EnvironmentError(
"Neither BOOST_PATH nor CONDA_PREFIX are set. " "Please install Boost or set BOOST_PATH."
)
if os.name == "nt":
inc = Path(conda_prefix) / "Library" / "include"
lib = Path(conda_prefix) / "Library" / "lib"
else:
inc = Path(conda_prefix) / "include"
lib = Path(conda_prefix) / "lib"
return {"include_dirs": [str(inc)], "library_dirs": [str(lib)]}


boost_cfg = get_boost_config()
ext_kws = {
"libraries": ["diffpy"] + get_boost_libraries(),
"extra_compile_args": ["-std=c++11"],
"extra_link_args": [],
"include_dirs": [numpy.get_include()],
"include_dirs": [numpy.get_include()] + boost_cfg["include_dirs"],
"library_dirs": boost_cfg["library_dirs"],
}


Expand Down
Loading