Products.GenericSetup

时间:2016-06-30 10:08:18

标签: plone genericsetup

我正在努力学习如何为Plone 5开发插件。 为了做到这一点,我坚持Plone 5培训( https://training.plone.org)。

我正按照培训的建议在其上安装带有plone的Vagrant / Virtualbox机器,但是当我尝试运行buildout时,我总是会收到此错误

vagrant@training:/vagrant/plonetheme.tango$ ./bin/buildout
Develop: '/vagrant/plonetheme.tango/.'
Updating _mr.developer.
Installing instance.
/home/vagrant/buildout-cache/eggs/setuptools-20.7.0-py2.7.egg/pkg_resources/__init__.py:187: RuntimeWarning: You have iterated over the result of pkg_resources.parse_version. This is a legacy behavior which is inconsistent with the new version class introduced in setuptools 8.0. In most cases, conversion to a tuple is unnecessary. For comparison of versions, sort the Version instances directly. If you have another use case requiring the tuple, please file a bug with the setuptools project describing that need.
  stacklevel=1,
Version and requirements information containing products.genericsetup:
  [versions] constraint on products.genericsetup: 1.8.0
  Requirement of plonetheme.tango[test]: Products.GenericSetup>=1.8.2
  Requirement of plone.app.testing: Products.GenericSetup
While:
  Installing instance.
Error: The requirement ('Products.GenericSetup>=1.8.2') is not allowed by your [versions] constraint (1.8.0)`

我尝试通过easy_install更新Products.GenericSetup,但buildout似乎忽略了python文件夹中的较新版本。

1 个答案:

答案 0 :(得分:7)

你的构建定义中的某个地方(我不知道Vagrant如何安装它所以你必须环顾.cfg文件)你可能有:

[versions]
...
Products.Genericsetup=1.8.0

...虽然主题需要1.8.2版本。

只需添加:

[versions]
...
Products.Genericsetup=1.8.2