We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8364aad commit fb0ae2eCopy full SHA for fb0ae2e
setup.py
@@ -11,14 +11,16 @@
11
12
try:
13
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
14
+
15
class bdist_wheel(_bdist_wheel):
16
def finalize_options(self):
17
super().finalize_options()
18
self.root_is_pure = not sys.platform.startswith("win")
19
20
def get_tag(self):
21
python, abi, plat = _bdist_wheel.get_tag(self)
22
# We don't contain any python source
- python, abi = 'py2.py3', 'none'
23
+ python, abi = "py2.py3", "none"
24
return python, abi, plat
25
except ImportError:
26
bdist_wheel = None
0 commit comments