From jens at plyp.com Fri Sep 9 07:52:22 2022 From: jens at plyp.com (Jens Vagelpohl) Date: Fri, 9 Sep 2022 09:52:22 +0200 Subject: [zope] Zope 5.6 released Message-ID: On behalf of Zope developer community I am pleased to announce the release of Zope 5.6. This bugfix release cleans up several smaller issues and will be the base for the second Plone 6 beta release. It also starts compatibility work for Python 3.11 so you can test your own Zope projects against it. Official Python 3.11 support will arrive soon. For the full list of changes see the change log at https://zope.readthedocs.io/en/latest/changes.html#id1. Installation instructions can be found at https://zope.readthedocs.io/en/latest/INSTALL.html. Jens Vagelpohl -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: Message signed with OpenPGP URL: From giampiero.benvenuti at chiaroscuro.com Fri Sep 9 10:14:39 2022 From: giampiero.benvenuti at chiaroscuro.com (Giampiero Benvenuti) Date: Fri, 9 Sep 2022 12:14:39 +0200 Subject: [zope] Error with buildout Message-ID: <9848c989-3c72-06c4-4ea0-6db346d7bf61@chiaroscuro.com> Hi, I run into this error while installing the latest zope version 5.6: $ bin/buildout While: ? Initializing. An internal error occurred due to a bug in either zc.buildout or in a recipe being used: Traceback (most recent call last): ? File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 2180, in main ??? buildout = Buildout(config_file, options, ? File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 377, in __init__ ??? _update(data, _open(os.path.dirname(config_file), config_file, [], ? File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 1830, in _open ??? eresult = _open(base, extends.pop(0), seen, dl_options, override, ? File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 1809, in _open ??? result = zc.buildout.configparser.parse( ? File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/configparser.py", line 188, in parse ??? section_condition = eval(expr, context)[0] ? File "", line 1, in NameError: name 'python310' is not defined What am I doing wrong? Thanks for your help. From jens at plyp.com Fri Sep 9 10:23:30 2022 From: jens at plyp.com (Jens Vagelpohl) Date: Fri, 9 Sep 2022 12:23:30 +0200 Subject: [zope] Error with buildout In-Reply-To: <9848c989-3c72-06c4-4ea0-6db346d7bf61@chiaroscuro.com> References: <9848c989-3c72-06c4-4ea0-6db346d7bf61@chiaroscuro.com> Message-ID: <604A2D51-DD11-4703-BCBD-CE2815960334@plyp.com> You need to update zc.buildout. You could do the following: bin/pip install -U ?zc.buildout==3.0.0rc3? jens > On 9. Sep 2022, at 12:17, Giampiero Benvenuti wrote: > > ?Hi, > > I run into this error while installing the latest zope version 5.6: > > $ bin/buildout > While: > Initializing. > > An internal error occurred due to a bug in either zc.buildout or in a > recipe being used: > Traceback (most recent call last): > File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 2180, in main > buildout = Buildout(config_file, options, > File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 377, in __init__ > _update(data, _open(os.path.dirname(config_file), config_file, [], > File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 1830, in _open > eresult = _open(base, extends.pop(0), seen, dl_options, override, > File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/buildout.py", line 1809, in _open > result = zc.buildout.configparser.parse( > File "/home/giampiero/zope560/lib/python3.10/site-packages/zc/buildout/configparser.py", line 188, in parse > section_condition = eval(expr, context)[0] > File "", line 1, in > NameError: name 'python310' is not defined > > What am I doing wrong? > > Thanks for your help. > > > _______________________________________________ > Zope maillist - Zope at zope.dev > https://mail.zope.dev/mailman/listinfo/zope > ** No cross posts or HTML encoding! ** > (Related lists - > https://mail.zope.dev/mailman/listinfo/zope-announce > https://mail.zope.dev/mailman/listinfo/zope-dev )