I have a minimal buildout to illustrate my problem.
[buildout]
parts =
instance
find-links =
http://dist.plone.org/release/5.0-latest
http://dist.plone.org/thirdparty
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
Pillow
The result of pip list:
pip (9.0.1)
pkg-resources (0.0.0)
setuptools (38.2.3)
wheel (0.30.0)
zc.buildout (2.9.5)
I want to install now.
$ buildout bootstrap
Setting socket time out to 3 seconds.
Creating directory '~/develop-eggs'.
Generated script '~/bin/buildout'.
$ bin/buildout
Setting socket time out to 3 seconds.
Getting distribution for 'Record'.
Using unpack_wheel() shim over the deprecated wheel_to_egg() hook.
Please update your wheel extension implementation for one that installs a .whl
handler in zc.buildout.easy_install.UNPACKERS
While:
Installing.
Getting section instance.
Initializing section instance.
Installing recipe plone.recipe.zope2instance.
Getting distribution for 'Record'.
Error: Wheels are not supported
I do not know how to come around this error. In "former times" buildout has downloaded a earlier version of buildout and restartet buildout. Now it starts to install wheels. What has changed and how to bypass this error?