We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b989b2 commit 43fa67eCopy full SHA for 43fa67e
2 files changed
cefpython/cef3/linux/installer/setup.py.template
@@ -1,3 +1,11 @@
1
+# Overwrite distutils.dist.Distribution.is_pure()
2
+# to return False, so that Python Wheel doesn't set
3
+# "none" platform tag.
4
+import distutils.dist
5
+def is_pure(self):
6
+ return False
7
+distutils.dist.Distribution.is_pure = is_pure
8
+
9
from setuptools import setup
10
from setuptools.command.install import install as _install
11
import sys
cefpython/cef3/windows/installer/setup.py.template
0 commit comments