Skip to content

Commit

Permalink
Covert.meta.cfg to .meta.toml (#9)
Browse files Browse the repository at this point in the history
* Switching from .meta.cfg to .meta.toml.

* Configuring for pure-python
  • Loading branch information
Michael Howitz committed Dec 17, 2020
1 parent bb77288 commit f9e50fb
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,6 +6,7 @@
*.pyo
.coverage
.coverage.*
.eggs/
.installed.cfg
.mr.developer.cfg
.tox/
Expand Down
8 changes: 0 additions & 8 deletions .meta.cfg

This file was deleted.

14 changes: 14 additions & 0 deletions .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
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -9,4 +9,4 @@ doctests = 1
[check-manifest]
ignore =
.editorconfig
.meta.cfg
.meta.toml
21 changes: 11 additions & 10 deletions tox.ini
Expand Up @@ -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]
Expand All @@ -19,7 +19,8 @@ deps =
zope.testrunner
commands =
zope-testrunner --test-path=src []
extras = test
extras =
test

[testenv:lint]
basepython = python3
Expand Down

0 comments on commit f9e50fb

Please sign in to comment.