From 476c30e47303c09d168a40155f983ddea17e88a8 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Fri, 24 Jun 2022 15:08:21 -0400 Subject: [PATCH 1/2] Remove setup_requires, use pyproject.toml --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index e84f7fdc..04039bcd 100644 --- a/setup.py +++ b/setup.py @@ -273,7 +273,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.5.0"], ext_modules=[CMakeExtension("chiavdf", "src")], cmdclass=dict( build_ext=CMakeBuild, install_hook=install_hook, build_hook=build_hook From bfc155320e7f4ec05b4b9927e38fc31f03baa116 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Fri, 24 Jun 2022 15:52:58 -0400 Subject: [PATCH 2/2] also remove build_requires --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 04039bcd..56469c46 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"], url="https://github.com/Chia-Network/chiavdf", ext_modules=ext_modules, cmdclass={"build_ext": BuildExt},