We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa28ede commit 1fe47b6Copy full SHA for 1fe47b6
setup.py
@@ -454,6 +454,9 @@ def run(self):
454
):
455
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
456
457
+ if sys.version_info[:2] == (3, 8): # GH 33239
458
+ extra_compile_args.append("-Wno-error=deprecated-declarations")
459
+
460
# enable coverage by building cython files by setting the environment variable
461
# "PANDAS_CYTHON_COVERAGE" (with a Truthy value) or by running build_ext
462
# with `--with-cython-coverage`enabled
0 commit comments