mirror of https://github.com/mamba-org/mamba.git
Change pybind11 to a build dependency
This commit is contained in:
parent
81ea3e74e4
commit
95847a2f92
|
@ -0,0 +1,6 @@
|
|||
[build-system]
|
||||
build-backend = 'setuptools.build_meta'
|
||||
requires = [
|
||||
'setuptools >= 49.2.1',
|
||||
'pybind11 >= 2.2',
|
||||
]
|
2
setup.py
2
setup.py
|
@ -193,7 +193,7 @@ setup(
|
|||
entry_points={"console_scripts": ["mamba = mamba.mamba:main"]},
|
||||
long_description="A (hopefully faster) reimplementation of the slow bits of conda.",
|
||||
ext_modules=ext_modules,
|
||||
install_requires=["pybind11>=2.2"],
|
||||
install_requires=[],
|
||||
extras_require={"test": ["pytest"]},
|
||||
cmdclass={"build_ext": BuildExt},
|
||||
zip_safe=False,
|
||||
|
|
Loading…
Reference in New Issue