fix(pyproject.toml): add python_version marker to cibuildwheel and missing pytest-xdist in [dev] (#560)

This commit is contained in:
Jalin Wang
2026-08-10 16:32:50 +08:00
committed by GitHub
parent f4f51e5bf4
commit 6a64e7b55f
+3 -2
View File
@@ -52,7 +52,7 @@ test = [
"pytest-cov >=4.1",
"pytest-mock >=3.12",
"pytest-xdist >=3.5",
"cibuildwheel == 3.4.0",
"cibuildwheel == 3.4.0; python_version >= '3.11'",
]
docs = [
"mkdocs >=1.5",
@@ -71,7 +71,8 @@ dev = [
"pytest >=8.0",
"pytest-cov >=4.1",
"pytest-mock >=3.12",
"cibuildwheel == 3.4.0",
"pytest-xdist >=3.5",
"cibuildwheel == 3.4.0; python_version >= '3.11'",
# Inherit docs deps
"mkdocs >=1.5",
"mkdocs-material >=9.5",