Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use build to create wheels #2697

Closed
wants to merge 2 commits into from
Closed

Use build to create wheels #2697

wants to merge 2 commits into from

Commits on Jan 30, 2024

  1. Use build to create wheels

    In Python 3.12, calling `python setup.py` to create wheels is deprecated;
    instead, one should use a "standard-based tool" (whatever that means),
    like the `build` package from PyPA.
    Therefore, instead of calling `setup.py bdist_wheel`, we use `python -m
    build`, which is the recommended replacement for it (as mentioned here:
    https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary).
    Fixes #2696.
    JCGoran committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    a49af49 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Hackery with --global-option

    JCGoran committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    b0dc196 View commit details
    Browse the repository at this point in the history