-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove python 3.7 and some cleanup (#144)
* Update macOS target to macOS 11 Changed MACOSX_DEPLOYMENT_TARGET to macOS 11 * Remove python 3.7 * update cibuildwheel to 2.14.1 * Update build.yml * Set minimum OS and python versions * Update build.yml * Update build.yml * Update build.yml * Update build.yml * Update build.yml * Remove darwin section from setup.py This darwin section was never used, and actually couldn't run as the class is only used on Windows * Update setup.py
- Loading branch information
Showing
2 changed files
with
3 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -221,11 +221,6 @@ class BuildExt(build_ext): | |
"unix": [""], | ||
} | ||
|
||
if sys.platform == "darwin": | ||
darwin_opts = ["-stdlib=libc++", "-mmacosx-version-min=10.14"] | ||
c_opts["unix"] += darwin_opts | ||
l_opts["unix"] += darwin_opts # type: ignore | ||
|
||
def build_extensions(self): | ||
ct = self.compiler.compiler_type | ||
opts = self.c_opts.get(ct, []) | ||
|
@@ -250,7 +245,7 @@ def build_extensions(self): | |
author_email="[email protected]", | ||
description="Chia vdf verification (wraps C++)", | ||
license="Apache License", | ||
python_requires=">=3.7", | ||
python_requires=">=3.8", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Chia-Network/chiavdf", | ||
|
@@ -268,7 +263,7 @@ def build_extensions(self): | |
author_email="[email protected]", | ||
description="Chia vdf verification (wraps C++)", | ||
license="Apache License", | ||
python_requires=">=3.7", | ||
python_requires=">=3.8", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Chia-Network/chiavdf", | ||
|