docsig 0.84.0__tar.gz → 0.85.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: docsig
3
- Version: 0.84.0
3
+ Version: 0.85.0
4
4
  Summary: Check signature params for proper documentation
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -195,7 +195,7 @@ ensure your installation has registered `docsig`
195
195
  .. code-block:: console
196
196
 
197
197
  $ flake8 --version
198
- 7.3.0 (docsig: 0.84.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.10.19 on Darwin
198
+ 7.3.0 (docsig: 0.85.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.10.19 on Darwin
199
199
 
200
200
  And now use `flake8` to lint your files
201
201
 
@@ -281,7 +281,7 @@ Standalone
281
281
 
282
282
  repos:
283
283
  - repo: https://github.com/jshwi/docsig
284
- rev: v0.84.0
284
+ rev: v0.85.0
285
285
  hooks:
286
286
  - id: docsig
287
287
  args:
@@ -300,7 +300,7 @@ or integrated with ``flake8``
300
300
  hooks:
301
301
  - id: flake8
302
302
  additional_dependencies:
303
- - docsig==0.84.0
303
+ - docsig==0.85.0
304
304
  args:
305
305
  - "--sig-check-class"
306
306
  - "--sig-check-dunders"
@@ -166,7 +166,7 @@ ensure your installation has registered `docsig`
166
166
  .. code-block:: console
167
167
 
168
168
  $ flake8 --version
169
- 7.3.0 (docsig: 0.84.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.10.19 on Darwin
169
+ 7.3.0 (docsig: 0.85.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.10.19 on Darwin
170
170
 
171
171
  And now use `flake8` to lint your files
172
172
 
@@ -252,7 +252,7 @@ Standalone
252
252
 
253
253
  repos:
254
254
  - repo: https://github.com/jshwi/docsig
255
- rev: v0.84.0
255
+ rev: v0.85.0
256
256
  hooks:
257
257
  - id: docsig
258
258
  args:
@@ -271,7 +271,7 @@ or integrated with ``flake8``
271
271
  hooks:
272
272
  - id: flake8
273
273
  additional_dependencies:
274
- - docsig==0.84.0
274
+ - docsig==0.85.0
275
275
  args:
276
276
  - "--sig-check-class"
277
277
  - "--sig-check-dunders"
@@ -214,17 +214,10 @@ def build_parser() -> _ArgumentParser:
214
214
  help="check protected functions and classes",
215
215
  dest="check_protected",
216
216
  )
217
- parser.add_argument(
218
- "-m",
219
- action="store_true",
220
- help=_argparse.SUPPRESS,
221
- dest="check_protected_class_methods",
222
- )
223
217
  parser.add_argument(
224
218
  "--check-protected-class-methods",
225
219
  action="store_true",
226
220
  help="check public methods belonging to protected classes",
227
- dest="check_protected_class_methods",
228
221
  )
229
222
  parser.add_argument(
230
223
  "--ignore-args",
@@ -20,7 +20,6 @@ def _warn_on_deprecated_short_flags() -> None:
20
20
  "-c": "--check-class",
21
21
  "-C": "--check-class-constructor",
22
22
  "-D": "--check-dunders",
23
- "-m": "--check-protected-class-methods",
24
23
  "-o": "--check-overridden",
25
24
  "-p": "--check-protected",
26
25
  "-P": "--check-property-returns",
@@ -8,4 +8,4 @@ Allows for access to the version internally without cyclic imports
8
8
  caused by accessing it through __init__.
9
9
  """
10
10
 
11
- __version__ = "0.84.0"
11
+ __version__ = "0.85.0"
@@ -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.84.0"
14
+ current_version = "0.85.0"
15
15
  message = "bump: version {current_version} → {new_version}"
16
16
  sign_tags = true
17
17
  tag = true
@@ -122,7 +122,7 @@ maintainers = [
122
122
  name = "docsig"
123
123
  readme = "README.rst"
124
124
  repository = "https://github.com/jshwi/docsig"
125
- version = "0.84.0"
125
+ version = "0.85.0"
126
126
 
127
127
  [tool.poetry.dependencies]
128
128
  Sphinx = ">=7,<9"
@@ -139,7 +139,7 @@ deptry = ">=0.16.1,<0.26.0"
139
139
  flynt = "^1.0.1"
140
140
  gitpython = "^3.1.43"
141
141
  isort = ">=5.13.2,<9.0.0"
142
- mypy = "^1.10.0"
142
+ mypy = ">=1.10,<3.0"
143
143
  pre-commit = ">=3.3.3,<5.0.0"
144
144
  pylint = "^4.0.4"
145
145
  tomli = "^2.0.1"
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