From 4e90c36ad5d779f7ad4ad1243ce71b845a41ce91 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Sat, 28 Mar 2020 09:12:52 +0100 Subject: [PATCH 1/4] For now keep supporting Python 2 --- buildout.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildout.cfg b/buildout.cfg index 8ad1b89..e5a1629 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,7 +1,7 @@ [buildout] extends = - https://raw.githubusercontent.com/zopefoundation/Zope/master/versions.cfg - https://raw.githubusercontent.com/zopefoundation/Zope/master/sources.cfg + https://raw.githubusercontent.com/zopefoundation/Zope/4.x/versions.cfg + https://raw.githubusercontent.com/zopefoundation/Zope/4.x/sources.cfg develop = . parts = interpreter test coverage From 42584f10b4dda84487cec61dc56478ec47d23a7c Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Sat, 28 Mar 2020 09:22:52 +0100 Subject: [PATCH 2/4] Try to get updates on each run. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 124755a..e9a2212 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ skip_missing_interpreters = False [testenv] commands = {envbindir}/buildout -c {toxinidir}/buildout.cfg buildout:directory={envdir} buildout:develop={toxinidir} bootstrap - {envbindir}/buildout -c {toxinidir}/buildout.cfg buildout:directory={envdir} buildout:develop={toxinidir} install test + {envbindir}/buildout -nc {toxinidir}/buildout.cfg buildout:directory={envdir} buildout:develop={toxinidir} install test coverage run {envbindir}/test --all {posargs:-pvc} deps = zc.buildout From dd15cfdbee1a43f8859a258ff0232420972991c0 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Sat, 28 Mar 2020 09:23:13 +0100 Subject: [PATCH 3/4] Fix env name. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e9a2212..947c8c4 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = py35, py36, py37, - py-38, + py38, lint, coverage, From 0fc75c03bc2bb878bc965baa89fa8687ec2e163e Mon Sep 17 00:00:00 2001 From: Maurits van Rees Date: Mon, 30 Mar 2020 08:29:23 +0200 Subject: [PATCH 4/4] Added setup.py keywords. (#97) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d026e1f..fe40455 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ }, license='ZPL 2.1', description='Security framework for Zope.', + keywords='security access authorization', author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', long_description=README + '\n\n' + CHANGES,