Find requirement specs in a Plone buildout setup

前端 未结 5 1951
无人及你
无人及你 2021-01-18 03:21

I have a Plone site (something around 4.2.4, telling from a version.txt in the root directory) which I\'d like to update to a recent version (I found this how-t

5条回答
  •  独厮守ぢ
    2021-01-18 03:56

    It could be that you have on your buildout configuration to not look for a newer version if you already have one locally. There should be a line like this:

    newest = false
    

    You could try to either remove your local cache of eggs or explicitly set to not use the global one and use a specific one (empty).

    Something like:

    [buildout]
    eggs-directory = /home/USER/SOMEWHERE/eggs
    download-cache = /home/USER/SOMEWHERE/downloads
    extends-cache = /home/USER/SOMEWHERE/extends
    

提交回复
热议问题