scikit-hep/iminuit

Provide macOS Monterey and Ventura wheels

nega0 opened this issue · 7 comments

nega0 commented

As I'm sure you're aware the Github actions runner image macos-latest still points to Big Sur. macos-12 is the runner image for Monterey. Up-to-date wheels would be super helpful for piping in iminuit and prevent issues like #813.

Unfortunately, as was unofficially announced just yesterday (actions/runner-images#6426 (comment)), the Ventura image won't be available until Q2. I can provide a Ventura self-hosted runner in the meantime.

@henryiii As the packaging expert, do you have thoughts on this?

@nega0 You seem to understand much more about this than I do. We can switch from macos-latest to macos-12 when building the wheels if that helps.

You do not need to build on the latest macOS. On macOS, you set MACOSX_DEPLOYMENT_TARGET to the oldest macOS you support, and the stdlib will only include binary components that support that version - or any newer version. So it's generally safe to upgrade to a newer macOS, but you do not need to. The only benefit is you might get access to newer header only changes (but this is C++11 IIRC, so unlikely to benefit). That's not the problem in that issue at all.

Wheels list some version they target, then they work on all newer versions, following the way macOS works. Run pip debug --verbose and you'll see everything your current version supports - you'll see all older macOS versions listed there.

Looks like 3.11 was missed here:

- os: macos-latest
py: cp38
arch: universal2
- os: macos-latest
py: cp39
arch: universal2
- os: macos-latest
py: cp310
arch: universal2

Ok, so all I have to do is to generate the missing wheel for Python3.11 then.

Release 2.18.0 contains a Python3.11 wheel for macos universal2

If there are still issues, ping me and reopen.

nega0 commented

Confirmed availability w/ python 3.11 on Ventura. Thanks!