commit:     b9cd84c03bd2140f5373418148ae307dd40ae658
Author:     Brian Harring <ferringb <AT> gmail <DOT> com>
AuthorDate: Thu Jan 25 06:32:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 26 09:34:40 2024 +0000
URL:        
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=b9cd84c0

fix: tox.ini since it's not been used in ages.

This broken whenever the repo went to pyproject.toml .

On the one hand, I like enumerating what devs have to
invoke locally rather than relying on GH.

On the other hand, clearly no one is using this.

This fixes it for current usage.  If it's to continue,
then GH and tox envlist's should be fused.

Signed-off-by: Brian Harring <ferringb <AT> gmail.com>
Closes: https://github.com/pkgcore/pkgcore/pull/430
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 tox.ini | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/tox.ini b/tox.ini
index 3a87db951..4bc6bce30 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,25 +1,22 @@
 [tox]
-envlist = py38, py39, py310, py311, py312
+envlist = py310, py311, py312
 [testenv]
 # force latest virtualenv/pip
 download = true
-deps = -rrequirements/tox.txt
+extras = test
 commands =
        pytest --cov {posargs:-v}
 
 # build docs
 [testenv:docs]
 skip_install = true
-deps =
-       -rrequirements/dev.txt
-       -rrequirements/docs.txt
+extras = doc
 commands =
        python setup.py build_docs
 
 # build dist files
 [testenv:dist]
 skip_install = true
-deps = -rrequirements/dist.txt
 commands =
        python setup.py sdist
        python setup.py bdist_wheel

Reply via email to