We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4244e7 commit c2d662cCopy full SHA for c2d662c
1 file changed
python/pyproject.toml
@@ -1,7 +1,7 @@
1
[build-system]
2
build-backend = "setuptools.build_meta"
3
requires = [
4
- "setuptools>=42",
+ "setuptools>=77.0.3",
5
]
6
7
[project]
@@ -47,8 +47,8 @@ urls.Tracker = "https://github.com/multi-objective/mooplot/issues"
47
package-dir = { "" = "src" }
48
49
[tool.ruff]
50
-# Set the maximum line length to 79.
51
-line-length = 79
+line-length = 80
+format.docstring-code-line-length = 80
52
format.docstring-code-format = true
53
lint.extend-select = [
54
"D", # pydocstyle
@@ -69,6 +69,8 @@ lint.per-file-ignores."examples/*" = [
69
lint.per-file-ignores."src/mooplot/colour.py" = [
70
"D",
71
] # FIXME!
72
+lint.pycodestyle.max-doc-length = 80
73
+lint.pycodestyle.max-line-length = 80
74
lint.pydocstyle.convention = "numpy"
75
76
[tool.pytest.ini_options]
0 commit comments