mirror of
https://github.com/pybind/pybind11.git
synced 2026-06-06 06:11:25 +00:00
pybind11.get_include(): added *args and **kwargs pass-through parameters
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
from ._version import version_info, __version__
|
||||
|
||||
|
||||
def get_include():
|
||||
def get_include(*args, **kwargs):
|
||||
import os
|
||||
try:
|
||||
from pip import locations
|
||||
return os.path.dirname(
|
||||
locations.distutils_scheme('pybind11')['headers'])
|
||||
locations.distutils_scheme('pybind11', *args, **kwargs)['headers'])
|
||||
except ImportError:
|
||||
return 'include'
|
||||
|
||||
Reference in New Issue
Block a user