Skip to content

Commit be484cd

Browse files
committed
fix pylint; skip musl with cibw
1 parent 8666ce2 commit be484cd

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,15 @@ target-version = [
117117
]
118118

119119
[tool.pylint]
120-
[tool.pylint.master]
120+
[tool.pylint.main]
121121
extension-pkg-whitelist = [
122122
"numpy",
123123
"scipy",
124124
]
125125
ignore = "_version.py"
126+
load-plugins = [
127+
"pylint.extensions.no_self_use",
128+
]
126129

127130
[tool.pylint.message_control]
128131
disable = [
@@ -145,7 +148,7 @@ target-version = [
145148
# Switch to using build
146149
build-frontend = "build"
147150
# Disable building py3.6/7/8, pp3.8, 32bit linux
148-
skip = ["cp314*", "cp36-*", "cp37-*", "cp38-*", "*_i686"]
151+
skip = ["cp314*", "cp36-*", "cp37-*", "cp38-*", "*_i686", "*-musllinux_*", "cp31?t-*"]
149152
# Run the package tests using `pytest`
150153
test-extras = "test"
151154
test-command = "pytest -v {package}/tests"

0 commit comments

Comments
 (0)