docsig 0.41.0__tar.gz → 0.42.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.41.0 → docsig-0.42.0}/PKG-INFO +3 -3
- {docsig-0.41.0 → docsig-0.42.0}/README.rst +1 -1
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_core.py +1 -1
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_module.py +1 -1
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_report.py +2 -1
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_version.py +1 -1
- {docsig-0.41.0 → docsig-0.42.0}/pyproject.toml +2 -2
- {docsig-0.41.0 → docsig-0.42.0}/LICENSE +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/__init__.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/__main__.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_config.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_directives.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_display.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_function.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_main.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_message.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/_utils.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/messages.py +0 -0
- {docsig-0.41.0 → docsig-0.42.0}/docsig/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: docsig
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.42.0
|
|
4
4
|
Summary: Check signature params for proper documentation
|
|
5
5
|
Home-page: https://pypi.org/project/docsig/
|
|
6
6
|
License: MIT
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
19
|
Requires-Dist: Pygments (>=2.13.0,<3.0.0)
|
|
20
20
|
Requires-Dist: Sphinx (>=4.3.2,<7.0.0)
|
|
21
21
|
Requires-Dist: arcon (>=0.3.1,<0.4.0)
|
|
22
|
-
Requires-Dist: astroid (>=
|
|
22
|
+
Requires-Dist: astroid (>=3.0.1,<4.0.0)
|
|
23
23
|
Requires-Dist: object-colors (>=2.1.0,<3.0.0)
|
|
24
24
|
Requires-Dist: typing-extensions (>=4.8.0,<5.0.0)
|
|
25
25
|
Project-URL: Documentation, https://docsig.readthedocs.io/en/latest
|
|
@@ -539,7 +539,7 @@ It can be added to your .pre-commit-config.yaml as follows:
|
|
|
539
539
|
|
|
540
540
|
repos:
|
|
541
541
|
- repo: https://github.com/jshwi/docsig
|
|
542
|
-
rev: v0.
|
|
542
|
+
rev: v0.42.0
|
|
543
543
|
hooks:
|
|
544
544
|
- id: docsig
|
|
545
545
|
args:
|
|
@@ -65,7 +65,7 @@ def _run_check( # pylint: disable=too-many-arguments
|
|
|
65
65
|
return failures
|
|
66
66
|
|
|
67
67
|
|
|
68
|
-
def docsig( # pylint: disable=too-many-locals
|
|
68
|
+
def docsig( # pylint: disable=too-many-locals,too-many-arguments
|
|
69
69
|
*path: _Path,
|
|
70
70
|
string: str | None = None,
|
|
71
71
|
check_class: bool = False,
|
|
@@ -70,13 +70,13 @@ maintainers = [
|
|
|
70
70
|
name = "docsig"
|
|
71
71
|
readme = "README.rst"
|
|
72
72
|
repository = "https://github.com/jshwi/docsig"
|
|
73
|
-
version = "0.
|
|
73
|
+
version = "0.42.0"
|
|
74
74
|
|
|
75
75
|
[tool.poetry.dependencies]
|
|
76
76
|
Pygments = "^2.13.0"
|
|
77
77
|
Sphinx = ">=4.3.2,<7.0.0"
|
|
78
78
|
arcon = "^0.3.1"
|
|
79
|
-
astroid = "
|
|
79
|
+
astroid = "^3.0.1"
|
|
80
80
|
object-colors = "^2.1.0"
|
|
81
81
|
python = "^3.8"
|
|
82
82
|
typing-extensions = "^4.8.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
|