summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2020-12-16 13:29:14 +0100
committerGitHub <noreply@github.com>2020-12-16 13:29:14 +0100
commit9ab6f6a57c3844d165b457cbe49e701baf584a41 (patch)
treee49a1889d717223c5bbc455e8fb2875bfa88d4d9
parentb9512cfad5ac506aa076a2e7a42adee118194b11 (diff)
downloadzope-browser-9ab6f6a57c3844d165b457cbe49e701baf584a41.tar.gz
Covert.meta.cfg to .meta.toml (#14)
* Switching from .meta.cfg to .meta.toml. * Configuring for pure-python
-rw-r--r--.gitignore1
-rw-r--r--.meta.cfg10
-rw-r--r--.meta.toml14
-rw-r--r--setup.cfg3
-rw-r--r--tox.ini20
5 files changed, 26 insertions, 22 deletions
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 28d668b..0000000
--- a/.meta.cfg
+++ /dev/null
@@ -1,10 +0,0 @@
-# Generated from:
-# https://github.com/zopefoundation/meta/tree/master/config/pure-python
-[meta]
-template = pure-python
-commit-id = 9553decc3884eee0bc49b42ae3a42970bd907aee
-fail-under = 100
-with-pypy = True
-with-docs = True
-with-sphinx-doctests = False
-
diff --git a/.meta.toml b/.meta.toml
new file mode 100644
index 0000000..6592327
--- /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 = true
+with-sphinx-doctests = false
+
+[coverage]
+fail-under = 100
diff --git a/setup.cfg b/setup.cfg
index 92fc4d8..264b78c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -9,6 +9,5 @@ doctests = 1
[check-manifest]
ignore =
.editorconfig
- .meta.cfg
+ .meta.toml
docs/_build/html/_sources/*
- docs/_build/doctest/*
diff --git a/tox.ini b/tox.ini
index 8180767..7d9fc1e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,16 +2,16 @@
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[tox]
envlist =
- lint,
- py27,
- py35,
- py36,
- py37,
- py38,
- py39,
- pypy,
- pypy3,
- docs,
+ lint
+ py27
+ py35
+ py36
+ py37
+ py38
+ py39
+ pypy
+ pypy3
+ docs
coverage
[testenv]