From 31550a7c6f1f6464703bffa8d3de284b0b0ebf85 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sat, 2 Nov 2024 23:12:18 -0400 Subject: [PATCH] fix: remove deprecated universal wheels setting running bdist_wheel /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:111: SetuptoolsDeprecationWarning: bdist_wheel.universal is deprecated !! ******************************************************************************** With Python 2.7 end-of-life, support for building universal wheels (i.e., wheels that support both Python 2 and Python 3) is being obviated. Please discontinue using this option, or if you still need it, file an issue with pypa/setuptools describing your use case. By 2025-Aug-30, you need to update your project and remove deprecated calls or your builds will no longer be supported. ******************************************************************************** !! --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index ea12903c..b41f1c52 100644 --- a/setup.py +++ b/setup.py @@ -63,5 +63,4 @@ setup_requires=setup_requires, tests_require=tests_require, extras_require=extras_require, - options={"bdist_wheel": {"universal": True}}, )