From 778579ca3444c3e6617375079c0f65d74735ec91 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Wed, 31 Aug 2022 16:11:39 -0400 Subject: [PATCH] Remove setup_requires, use pyproject.toml (#121) * Remove setup_requires, use pyproject.toml * also remove build_requires --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index d19f3239..04dfa9c7 100644 --- a/setup.py +++ b/setup.py @@ -253,7 +253,6 @@ def build_extensions(self): python_requires=">=3.7", long_description=open("README.md").read(), long_description_content_type="text/markdown", - build_requires=["pybind11>=2.10.0"], url="https://github.com/Chia-Network/chiavdf", ext_modules=ext_modules, cmdclass={"build_ext": BuildExt}, @@ -273,7 +272,6 @@ def build_extensions(self): long_description=open("README.md").read(), long_description_content_type="text/markdown", url="https://github.com/Chia-Network/chiavdf", - setup_requires=["pybind11>=2.10.0"], ext_modules=[CMakeExtension("chiavdf", "src")], cmdclass=dict( build_ext=CMakeBuild, install_hook=install_hook, build_hook=build_hook