Skip to content

Commit

Permalink
fix: remove deprecated universal wheels setting
Browse files Browse the repository at this point in the history
    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.
            ********************************************************************************

    !!
  • Loading branch information
jamessan committed Nov 3, 2024
1 parent 2b5a327 commit 31550a7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,4 @@
setup_requires=setup_requires,
tests_require=tests_require,
extras_require=extras_require,
options={"bdist_wheel": {"universal": True}},
)

0 comments on commit 31550a7

Please sign in to comment.