Henry Schreiner
Henry Schreiner
Also, 3.27 removed (sort-of) the old FindPythonLibs/FindPythonInterp. So the CMake version _really_ matters to Python users.
That project requires CMake 3.18.2+: https://github.com/AcademySoftwareFoundation/OpenTimelineIO/blob/d22935e0033510bd834abbeb42e95b95ea94fab6/CMakeLists.txt#L3 It also uses the `cmake` command (not `import cmake`): https://github.com/AcademySoftwareFoundation/OpenTimelineIO/blob/d22935e0033510bd834abbeb42e95b95ea94fab6/setup.py#L157 So all you need to do is build without isolation (which I would recommend...
@jcfr, I believe @kloczek is trying to make an RPM for OpenTimelineIO, and is not otherwise associated with the project. @JeanChristopheMorinPerso is. An "isolated build" in PEP 517 terms is...
> Nope .. that is not true because cmake is listed as pep517 build dependency and example build (executed as `python3 -sBm build -w --no-isolation`) will instantly exit non-zero exit...
Does this still not mention 2.3 in the error message, even though 2.3 is now supported?
Ahh, perfect, the bug was that pkginfo wasn’t updated.
FreeBSD does not support redistributable wheels at all. There is no backward compatibility guarantee for wheels, or cross-BSD guarantee, so there can't be a "manybsd" image. You can't upload them...
If you are searching for Python multiple times, you might want to set `Python_ARTIFACTS_INTERACTIVE`. Otherwise, FindPython will search every single time, and can even find different Python versions.
The problem is: ``` Python 3.12.2 (main, Apr 23 2024, 13:31:25) [GCC 9.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> print(sys.path) ['',...
Also, if you are controlling the build by disabling isolated builds, that's what `--skip-dependency-check` is for. In pip, dependency checking even opt-in instead of opt-out for non-isolated builds, which I...