docsig 0.64.0__tar.gz → 0.64.1__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.64.0 → docsig-0.64.1}/PKG-INFO +5 -4
- {docsig-0.64.0 → docsig-0.64.1}/README.rst +3 -3
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_config.py +1 -1
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_version.py +1 -1
- {docsig-0.64.0 → docsig-0.64.1}/pyproject.toml +2 -2
- {docsig-0.64.0 → docsig-0.64.1}/LICENSE +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/__init__.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/__main__.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_core.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_decorators.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_directives.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_files.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_hooks.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_main.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_module.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_report.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_stub.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/_utils.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/messages.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/plugin.py +0 -0
- {docsig-0.64.0 → docsig-0.64.1}/docsig/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: docsig
|
|
3
|
-
Version: 0.64.
|
|
3
|
+
Version: 0.64.1
|
|
4
4
|
Summary: Check signature params for proper documentation
|
|
5
5
|
Home-page: https://pypi.org/project/docsig/
|
|
6
6
|
License: MIT
|
|
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
20
|
Requires-Dist: Sphinx (>=7.0.0,<8.0.0)
|
|
20
21
|
Requires-Dist: astroid (>=3.0.1,<4.0.0)
|
|
21
22
|
Requires-Dist: pathspec (>=0.12.1,<0.13.0)
|
|
@@ -180,7 +181,7 @@ ensure your installation has registered `docsig`
|
|
|
180
181
|
.. code-block:: console
|
|
181
182
|
|
|
182
183
|
$ flake8 --version
|
|
183
|
-
7.1.0 (docsig: 0.64.
|
|
184
|
+
7.1.0 (docsig: 0.64.1, mccabe: 0.7.0, pycodestyle: 2.12.0, pyflakes: 3.2.0) CPython 3.8.13 on Darwin
|
|
184
185
|
|
|
185
186
|
And now use `flake8` to lint your files
|
|
186
187
|
|
|
@@ -269,7 +270,7 @@ Standalone
|
|
|
269
270
|
|
|
270
271
|
repos:
|
|
271
272
|
- repo: https://github.com/jshwi/docsig
|
|
272
|
-
rev: v0.64.
|
|
273
|
+
rev: v0.64.1
|
|
273
274
|
hooks:
|
|
274
275
|
- id: docsig
|
|
275
276
|
args:
|
|
@@ -288,7 +289,7 @@ or integrated with ``flake8``
|
|
|
288
289
|
hooks:
|
|
289
290
|
- id: flake8
|
|
290
291
|
additional_dependencies:
|
|
291
|
-
- docsig==0.64.
|
|
292
|
+
- docsig==0.64.1
|
|
292
293
|
args:
|
|
293
294
|
- "--sig-check-class"
|
|
294
295
|
- "--sig-check-dunders"
|
|
@@ -153,7 +153,7 @@ ensure your installation has registered `docsig`
|
|
|
153
153
|
.. code-block:: console
|
|
154
154
|
|
|
155
155
|
$ flake8 --version
|
|
156
|
-
7.1.0 (docsig: 0.64.
|
|
156
|
+
7.1.0 (docsig: 0.64.1, mccabe: 0.7.0, pycodestyle: 2.12.0, pyflakes: 3.2.0) CPython 3.8.13 on Darwin
|
|
157
157
|
|
|
158
158
|
And now use `flake8` to lint your files
|
|
159
159
|
|
|
@@ -242,7 +242,7 @@ Standalone
|
|
|
242
242
|
|
|
243
243
|
repos:
|
|
244
244
|
- repo: https://github.com/jshwi/docsig
|
|
245
|
-
rev: v0.64.
|
|
245
|
+
rev: v0.64.1
|
|
246
246
|
hooks:
|
|
247
247
|
- id: docsig
|
|
248
248
|
args:
|
|
@@ -261,7 +261,7 @@ or integrated with ``flake8``
|
|
|
261
261
|
hooks:
|
|
262
262
|
- id: flake8
|
|
263
263
|
additional_dependencies:
|
|
264
|
-
- docsig==0.64.
|
|
264
|
+
- docsig==0.64.1
|
|
265
265
|
args:
|
|
266
266
|
- "--sig-check-class"
|
|
267
267
|
- "--sig-check-dunders"
|
|
@@ -83,7 +83,7 @@ class _ArgumentParser(_a.ArgumentParser):
|
|
|
83
83
|
namespace: _a.Namespace | None = None,
|
|
84
84
|
) -> tuple[_a.Namespace | None, list[str]]:
|
|
85
85
|
namespace, args = super().parse_known_args(args, namespace)
|
|
86
|
-
config = get_config(self.prog)
|
|
86
|
+
config = get_config(_Path(self.prog).stem)
|
|
87
87
|
namespace.__dict__ = merge_configs(namespace.__dict__, config)
|
|
88
88
|
return namespace, args
|
|
89
89
|
|
|
@@ -11,7 +11,7 @@ line-length = 79
|
|
|
11
11
|
allow_dirty = true
|
|
12
12
|
commit = true
|
|
13
13
|
commit_args = "-sS"
|
|
14
|
-
current_version = "0.64.
|
|
14
|
+
current_version = "0.64.1"
|
|
15
15
|
message = "bump: version {current_version} → {new_version}"
|
|
16
16
|
sign_tags = true
|
|
17
17
|
tag = true
|
|
@@ -131,7 +131,7 @@ maintainers = [
|
|
|
131
131
|
name = "docsig"
|
|
132
132
|
readme = "README.rst"
|
|
133
133
|
repository = "https://github.com/jshwi/docsig"
|
|
134
|
-
version = "0.64.
|
|
134
|
+
version = "0.64.1"
|
|
135
135
|
|
|
136
136
|
[tool.poetry.dependencies]
|
|
137
137
|
Sphinx = "^7.0.0"
|
|
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
|