File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,9 @@ class get_pybind_include(object):
13
13
until it is actually installed, so that the ``get_include()``
14
14
method can be invoked. """
15
15
16
- def __init__ (self , user = False ):
17
- self .user = user
18
-
19
16
def __str__ (self ):
20
17
import pybind11
21
- return pybind11 .get_include (self . user )
18
+ return pybind11 .get_include ()
22
19
23
20
24
21
ext_modules = [
@@ -28,7 +25,6 @@ def __str__(self):
28
25
include_dirs = [
29
26
# Path to pybind11 headers
30
27
get_pybind_include (),
31
- get_pybind_include (user = True )
32
28
],
33
29
language = 'c++'
34
30
),
@@ -106,7 +102,6 @@ def build_extensions(self):
106
102
description = 'A test project using pybind11' ,
107
103
long_description = '' ,
108
104
ext_modules = ext_modules ,
109
- install_requires = ['pybind11>=2.4' ],
110
105
setup_requires = ['pybind11>=2.4' ],
111
106
cmdclass = {'build_ext' : BuildExt },
112
107
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments