commit: eddd506089fad7ccc4984e67962a7ea23fcf66bc
Author: Brian Harring <ferringb <AT> gmail <DOT> com>
AuthorDate: Sat Jan 10 19:27:37 2026 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 21 18:44:47 2026 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=eddd5060
require pytest 9.0
Also wipe some dead pyproject definitions.
Signed-off-by: Brian Harring <ferringb <AT> gmail.com>
NEWS.rst | 9 +++++++++
pyproject.toml | 7 +++----
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/NEWS.rst b/NEWS.rst
index 5b12e13d..545c2e2e 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,15 @@
Release Notes
=============
+-----------------------------
+pkgcheck 0.10.40 (unreleased)
+-----------------------------
+
+Packaging
+~~~~~~~~~
+
+- ``pytest >= 9.0`` is now required
+
-----------------------------
pkgcheck 0.10.39 (2026-01-03)
-----------------------------
diff --git a/pyproject.toml b/pyproject.toml
index 52f118c6..9df03530 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -51,13 +51,15 @@ dependencies = [
[project.optional-dependencies]
test = [
- "pytest>=6.0",
+ "pytest>=9.0",
"pytest-cov",
"requests",
]
+
doc = [
"sphinx",
]
+
network = [
"requests",
]
@@ -93,9 +95,6 @@ ignore = [
"E741", # ambiguous variable name
]
-[tool.black]
-line-length = 100
-
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vv -ra -l"