We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f94f1 commit 2186a38Copy full SHA for 2186a38
setup.py
@@ -7,20 +7,6 @@
7
import subprocess
8
import sys
9
10
-if platform.system() == "Darwin":
11
- major_version = int(platform.mac_ver()[0].split(".")[0])
12
- if major_version < 12:
13
- raise OSError("You are using an EOL, unsupported, and out-of-date OS.")
14
-
15
16
-def is_virtualenv():
17
- return sys.base_prefix != sys.prefix
18
19
20
-if not (os.getenv("GITHUB_ACTIONS") == "true" or is_virtualenv()):
21
- raise ValueError("You are not using a virtual environment")
22
23
24
from Cython.Build import cythonize
25
from Cython.Compiler.AutoDocTransforms import EmbedSignature
26
from setuptools import Extension, find_packages, setup
0 commit comments