docsig 0.88.0__tar.gz → 0.89.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {docsig-0.88.0 → docsig-0.89.0}/PKG-INFO +5 -5
- {docsig-0.88.0 → docsig-0.89.0}/README.rst +3 -3
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_config.py +0 -7
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_main.py +0 -1
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_version.py +1 -1
- {docsig-0.88.0 → docsig-0.89.0}/pyproject.toml +4 -4
- {docsig-0.88.0 → docsig-0.89.0}/LICENSE +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/LICENSES/SPHINX_LICENSE +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/__init__.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/__main__.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_check.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_core.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_decorators.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_directives.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_files.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_hooks.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_module.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_parsers.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_report.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_stub.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_utils.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/_vendor/sphinx/ext/napoleon.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/messages.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/plugin/__init__.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/plugin/_flake8.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/plugin/_validate_pyproject.py +0 -0
- {docsig-0.88.0 → docsig-0.89.0}/docsig/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: docsig
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.89.0
|
|
4
4
|
Summary: Check signature params for proper documentation
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
20
20
|
Requires-Dist: astroid (>=4.0.2,<5.0.0)
|
|
21
21
|
Requires-Dist: pathspec (>=0.12.1,<1.2.0)
|
|
22
22
|
Requires-Dist: tomli (>=2.0.1,<3.0.0)
|
|
23
|
-
Requires-Dist: wcmatch (>=
|
|
23
|
+
Requires-Dist: wcmatch (>=10.2.1,<11.0.0)
|
|
24
24
|
Project-URL: Documentation, https://docsig.io/en/latest
|
|
25
25
|
Project-URL: Homepage, https://docsig.io
|
|
26
26
|
Project-URL: Repository, https://github.com/jshwi/docsig
|
|
@@ -206,7 +206,7 @@ ensure your installation has registered `docsig`
|
|
|
206
206
|
.. code-block:: console
|
|
207
207
|
|
|
208
208
|
$ flake8 --version
|
|
209
|
-
7.3.0 (docsig: 0.
|
|
209
|
+
7.3.0 (docsig: 0.89.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.10.19 on Darwin
|
|
210
210
|
|
|
211
211
|
And now use `flake8` to lint your files
|
|
212
212
|
|
|
@@ -292,7 +292,7 @@ Standalone
|
|
|
292
292
|
|
|
293
293
|
repos:
|
|
294
294
|
- repo: https://github.com/jshwi/docsig
|
|
295
|
-
rev: v0.
|
|
295
|
+
rev: v0.89.0
|
|
296
296
|
hooks:
|
|
297
297
|
- id: docsig
|
|
298
298
|
args:
|
|
@@ -311,7 +311,7 @@ or integrated with ``flake8``
|
|
|
311
311
|
hooks:
|
|
312
312
|
- id: flake8
|
|
313
313
|
additional_dependencies:
|
|
314
|
-
- docsig==0.
|
|
314
|
+
- docsig==0.89.0
|
|
315
315
|
args:
|
|
316
316
|
- "--sig-check-class"
|
|
317
317
|
- "--sig-check-dunders"
|
|
@@ -178,7 +178,7 @@ ensure your installation has registered `docsig`
|
|
|
178
178
|
.. code-block:: console
|
|
179
179
|
|
|
180
180
|
$ flake8 --version
|
|
181
|
-
7.3.0 (docsig: 0.
|
|
181
|
+
7.3.0 (docsig: 0.89.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.10.19 on Darwin
|
|
182
182
|
|
|
183
183
|
And now use `flake8` to lint your files
|
|
184
184
|
|
|
@@ -264,7 +264,7 @@ Standalone
|
|
|
264
264
|
|
|
265
265
|
repos:
|
|
266
266
|
- repo: https://github.com/jshwi/docsig
|
|
267
|
-
rev: v0.
|
|
267
|
+
rev: v0.89.0
|
|
268
268
|
hooks:
|
|
269
269
|
- id: docsig
|
|
270
270
|
args:
|
|
@@ -283,7 +283,7 @@ or integrated with ``flake8``
|
|
|
283
283
|
hooks:
|
|
284
284
|
- id: flake8
|
|
285
285
|
additional_dependencies:
|
|
286
|
-
- docsig==0.
|
|
286
|
+
- docsig==0.89.0
|
|
287
287
|
args:
|
|
288
288
|
- "--sig-check-class"
|
|
289
289
|
- "--sig-check-dunders"
|
|
@@ -168,17 +168,10 @@ def build_parser() -> _ArgumentParser:
|
|
|
168
168
|
help="check overridden methods",
|
|
169
169
|
dest="check_overridden",
|
|
170
170
|
)
|
|
171
|
-
parser.add_argument(
|
|
172
|
-
"-P",
|
|
173
|
-
action="store_true",
|
|
174
|
-
help=_argparse.SUPPRESS,
|
|
175
|
-
dest="check_property_returns",
|
|
176
|
-
)
|
|
177
171
|
parser.add_argument(
|
|
178
172
|
"--check-property-returns",
|
|
179
173
|
action="store_true",
|
|
180
174
|
help="check property return values",
|
|
181
|
-
dest="check_property_returns",
|
|
182
175
|
)
|
|
183
176
|
parser.add_argument(
|
|
184
177
|
"-p",
|
|
@@ -12,7 +12,7 @@ dependencies = [
|
|
|
12
12
|
"astroid (>=4.0.2,<5.0.0)",
|
|
13
13
|
"pathspec (>=0.12.1,<1.2.0)",
|
|
14
14
|
"tomli (>=2.0.1,<3.0.0)",
|
|
15
|
-
"wcmatch (>=
|
|
15
|
+
"wcmatch (>=10.2.1,<11.0.0)"
|
|
16
16
|
]
|
|
17
17
|
description = "Check signature params for proper documentation"
|
|
18
18
|
keywords = [
|
|
@@ -29,7 +29,7 @@ maintainers = [
|
|
|
29
29
|
name = "docsig"
|
|
30
30
|
readme = "README.rst"
|
|
31
31
|
requires-python = ">=3.10"
|
|
32
|
-
version = "0.
|
|
32
|
+
version = "0.89.0"
|
|
33
33
|
|
|
34
34
|
[project.entry-points."flake8.extension"]
|
|
35
35
|
SIG = "docsig.plugin:Flake8"
|
|
@@ -47,7 +47,7 @@ line-length = 79
|
|
|
47
47
|
allow_dirty = true
|
|
48
48
|
commit = true
|
|
49
49
|
commit_args = "-sS"
|
|
50
|
-
current_version = "0.
|
|
50
|
+
current_version = "0.89.0"
|
|
51
51
|
message = "bump: version {current_version} → {new_version}"
|
|
52
52
|
sign_tags = true
|
|
53
53
|
tag = true
|
|
@@ -153,7 +153,7 @@ pylint = "^4.0.6"
|
|
|
153
153
|
tomli = "^2.0.1"
|
|
154
154
|
tomli-w = "^1.0.0"
|
|
155
155
|
towncrier = ">=23.11,<26.0"
|
|
156
|
-
tox = "^4.
|
|
156
|
+
tox = "^4.56.1"
|
|
157
157
|
validate-pyproject = {extras = ["all", "store"], version = "^0.25"}
|
|
158
158
|
vulture = "^2.11"
|
|
159
159
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|