A tip for those using a Plone installed via buildout on macOS, when using a pyenv-installed Python:
Remember when you upgrade your macOS, you will need to rebuild your pyenv python via pyenv install $VERSION_GOES_HERE β or you will make pkg_resources and by proxy zc.buildout.easy_install unhappy with you.
If you do not do this, you may get distribution installation errors related to copying your wheels to the eggs/ directory, because buildout relies on pkg_resources.compatible_platforms() result, which will very much not be the same for your Python built on previous macOS version.
Errors in this case will look like, when running buildout:
The first time you run buildout after your macOS upgrade:
OSError: [Errno 66] Directory not empty: ...
If you try again, you get a slightly different error:
assert newdist is not None # newloc above is missing our dist?!
AssertionError
What is seen in pdb for this case β say you built Python on Ventura, and upgraded to Sonoma β is that what is compared in pkg_resources.compatible_platforms() is not equal:
thx for this hint, but what if it does not help?
I have installed different 3.8.x versions and removed buildout cache, but ending up always with the same error while installing plone.restapi==7.9.0.
Any ideas?
I am unsure if there is any Python 3.8 / Plone 5.2 parallel to what is described for latest setuptools in Plone 6.1.x here.
What I notice on PyPI is that plone.restapi == 7.9.0 is only available as a source distribution β I do not know if that helps narrow down what might be happening here.
I can say that I have been able to run plone.restapi = 8.37.0 in a Plone 5.2 on Python 3.8 without issue; this version has a built platform-agnostic wheel distribution on PyPI.