diff --git a/.gitignore b/.gitignore index 7bd5e56..0aadbae 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ *.pyo .coverage .coverage.* +.eggs/ .installed.cfg .mr.developer.cfg .tox/ diff --git a/.meta.cfg b/.meta.cfg deleted file mode 100644 index 0de0746..0000000 --- a/.meta.cfg +++ /dev/null @@ -1,8 +0,0 @@ -# Generated from: -# https://github.com/zopefoundation/meta/tree/master/config/pure-python -[meta] -template = pure-python -commit-id = 1f1620d8f96c3f3781d1df0c591dd72a3f068879 -with-pypy = True -fail-under = 84 - diff --git a/.meta.toml b/.meta.toml new file mode 100644 index 0000000..73f19f4 --- /dev/null +++ b/.meta.toml @@ -0,0 +1,14 @@ +# Generated from: +# https://github.com/zopefoundation/meta/tree/master/config/pure-python +[meta] +template = "pure-python" +commit-id = "f842b6b0cf63668b074b4fcd011f1cd04a7cc9ef" + +[python] +with-pypy = true +with-legacy-python = true +with-docs = false +with-sphinx-doctests = false + +[coverage] +fail-under = 84 diff --git a/setup.cfg b/setup.cfg index 0bbfe1c..95cd49b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,4 +9,4 @@ doctests = 1 [check-manifest] ignore = .editorconfig - .meta.cfg + .meta.toml diff --git a/tox.ini b/tox.ini index 1a38393..f4a3223 100644 --- a/tox.ini +++ b/tox.ini @@ -2,15 +2,15 @@ # https://github.com/zopefoundation/meta/tree/master/config/pure-python [tox] envlist = - lint, - py27, - py35, - py36, - py37, - py38, - py39, - pypy, - pypy3, + lint + py27 + py35 + py36 + py37 + py38 + py39 + pypy + pypy3 coverage [testenv] @@ -19,7 +19,8 @@ deps = zope.testrunner commands = zope-testrunner --test-path=src [] -extras = test +extras = + test [testenv:lint] basepython = python3