Install Plone. Buildout now includes "buildout-versions" (and some of the older "buildout.dumppickedversions")

I have this warning during installation:

$ bin/buildout While: Installing. Loading extensions. Error: Buildout now includes 'buildout-versions' (and part of the older 'buildout.dumppickedversions'). Remove the extension from your configuration and look at the 'show-picked-versions' option in buildout documentation. 

How to fix it?

+4
source share
1 answer

If you use Buildout 2.x or higher, remove buildout.dumppickedversions from the extensions, for example:

 [buildout] extensions = # We don't need this in 2.x: # buildout.dumppickedversions 

Or use Buildout 1.7.x:

 $ curl -O https://raw.github.com/buildout/buildout/1/bootstrap/bootstrap.py $ bin/python bootstrap.py 
+8
source

Source: https://habr.com/ru/post/1488228/


All Articles