You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python now complains loudly about calling the installer directly:
********************************************************************************
Please avoid running ``setup.py`` and ``easy_install``.
Instead, use pypa/build, pypa/installer or other
standards-based tools.
See https://github.com/pypa/setuptools/issues/917 for details.
********************************************************************************
Setup no longer finds the correct .so file by default because there are files named ./pyradex/radex/radex.cpython-310-darwin.so etc (i.e., they're radex.<something>.so instead of radex.so). 3b0625f fixes that by globbing for precompiled .so objects, which we expect to find if python setup.py install_radex completed successfully.
So... install kinda works again on my mac at least.
The text was updated successfully, but these errors were encountered:
During my latest attempt on Mac OS X 13.6 Ventura, I ran into a series of problems:
./pyradex/radex/radex.cpython-310-darwin.so
etc (i.e., they'reradex.<something>.so
instead ofradex.so
). 3b0625f fixes that by globbing for precompiled .so objects, which we expect to find ifpython setup.py install_radex
completed successfully.So... install kinda works again on my mac at least.
The text was updated successfully, but these errors were encountered: