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 31b5881 commit f8f5ee5Copy full SHA for f8f5ee5
setup.py
@@ -16,10 +16,16 @@
16
extensions = [
17
Extension("scrapely._htmlpage",
18
["scrapely/_htmlpage%s" % ext],
19
- include_dirs=include_dirs),
+ include_dirs=include_dirs,
20
+ extra_compile_args=[
21
+ '-Wno-deprecated-declarations',
22
+ '-Wno-int-conversion']),
23
Extension("scrapely.extraction._similarity",
24
["scrapely/extraction/_similarity%s" % ext],
25
26
27
28
29
]
30
if USE_CYTHON and not IS_PYPY:
31
from Cython.Build import cythonize
0 commit comments