annotate 2.0.6__tar.gz → 2.0.8__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.
- {annotate-2.0.6 → annotate-2.0.8}/CHANGES.rst +1 -1
- {annotate-2.0.6 → annotate-2.0.8}/LICENSE +1 -1
- {annotate-2.0.6 → annotate-2.0.8}/PKG-INFO +5 -5
- {annotate-2.0.6 → annotate-2.0.8}/README.rst +1 -1
- {annotate-2.0.6 → annotate-2.0.8}/pyproject.toml +6 -6
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate.egg-info/PKG-INFO +5 -5
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate.egg-info/requires.txt +2 -2
- {annotate-2.0.6 → annotate-2.0.8}/.readthedocs.yml +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/MANIFEST.in +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/docs/CHANGES.rst +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/docs/README.rst +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/docs/_static/.keep +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/docs/_templates/.keep +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/docs/conf.py +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/docs/index.rst +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/setup.cfg +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate/__about__.py +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate/__init__.py +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate/_annotate.py +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate/py.typed +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate.egg-info/SOURCES.txt +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate.egg-info/dependency_links.txt +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate.egg-info/top_level.txt +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/src/annotate.egg-info/zip-safe +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/tests/__init__.py +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/tests/__main__.py +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/tests/data/.keep +0 -0
- {annotate-2.0.6 → annotate-2.0.8}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author-email: Adam Karpierz <adam@karpierz.net>
|
|
6
6
|
Maintainer-email: Adam Karpierz <adam@karpierz.net>
|
|
@@ -40,10 +40,10 @@ Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
|
40
40
|
Requires-Dist: sphinx-toolbox>=4.0.0; extra == "doc"
|
|
41
41
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
42
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
43
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.2; extra == "doc"
|
|
44
44
|
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
|
|
45
45
|
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
46
|
+
Requires-Dist: nbsphinx>=0.9.8; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
49
|
Requires-Dist: rich>=14.2.0; extra == "test"
|
|
@@ -279,7 +279,7 @@ Authors
|
|
|
279
279
|
|
|
280
280
|
.. |package| replace:: annotate
|
|
281
281
|
.. |package_bold| replace:: **annotate**
|
|
282
|
-
.. |copyright| replace:: Copyright (c) 2012-
|
|
282
|
+
.. |copyright| replace:: Copyright (c) 2012-2026 Adam Karpierz
|
|
283
283
|
.. |respository| replace:: https://github.com/karpierz/annotate.git
|
|
284
284
|
.. _Development page: https://github.com/karpierz/annotate
|
|
285
285
|
.. _PyPI record: https://pypi.org/project/annotate/
|
|
@@ -288,7 +288,7 @@ Authors
|
|
|
288
288
|
Changelog
|
|
289
289
|
=========
|
|
290
290
|
|
|
291
|
-
2.0.
|
|
291
|
+
2.0.8 (2025-11-30)
|
|
292
292
|
------------------
|
|
293
293
|
- Mark the package as typed.
|
|
294
294
|
- 100% code coverage.
|
|
@@ -228,7 +228,7 @@ Authors
|
|
|
228
228
|
|
|
229
229
|
.. |package| replace:: annotate
|
|
230
230
|
.. |package_bold| replace:: **annotate**
|
|
231
|
-
.. |copyright| replace:: Copyright (c) 2012-
|
|
231
|
+
.. |copyright| replace:: Copyright (c) 2012-2026 Adam Karpierz
|
|
232
232
|
.. |respository| replace:: https://github.com/karpierz/annotate.git
|
|
233
233
|
.. _Development page: https://github.com/karpierz/annotate
|
|
234
234
|
.. _PyPI record: https://pypi.org/project/annotate/
|
|
@@ -7,7 +7,7 @@ requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.32.0']
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'annotate'
|
|
10
|
-
version = '2.0.
|
|
10
|
+
version = '2.0.8'
|
|
11
11
|
description = '''Decorator to set a function's __annotations__ like Py3.'''
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz', email = 'adam@karpierz.net' },
|
|
@@ -56,10 +56,10 @@ optional-dependencies.'doc' = [
|
|
|
56
56
|
'sphinx-toolbox>=4.0.0',
|
|
57
57
|
'sphinx-tabs>=3.4.5', # don't touch! sphinx-toolbox requires <3.4.7
|
|
58
58
|
'sphinx-copybutton>=0.5.2',
|
|
59
|
-
'sphinxcontrib-spelling>=8.0.
|
|
59
|
+
'sphinxcontrib-spelling>=8.0.2',
|
|
60
60
|
'sphinx-lint>=1.0.2',
|
|
61
61
|
'restructuredtext-lint>=2.0.2',
|
|
62
|
-
'nbsphinx>=0.9.
|
|
62
|
+
'nbsphinx>=0.9.8',
|
|
63
63
|
]
|
|
64
64
|
optional-dependencies.'test' = [
|
|
65
65
|
'deepdiff>=8.6.1',
|
|
@@ -179,7 +179,7 @@ requires = [
|
|
|
179
179
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
180
180
|
'tox>=4.32.0',
|
|
181
181
|
'virtualenv>=20.35.4',
|
|
182
|
-
'tox-backtick>=
|
|
182
|
+
'tox-backtick>=2.0.0',
|
|
183
183
|
]
|
|
184
184
|
[tool.tox.labels]
|
|
185
185
|
py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
|
|
@@ -314,7 +314,7 @@ commands = [
|
|
|
314
314
|
extras = []
|
|
315
315
|
deps = [
|
|
316
316
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
317
|
-
'mypy>=1.
|
|
317
|
+
'mypy>=1.19.0',
|
|
318
318
|
'mypy_extensions>=1.1.0',
|
|
319
319
|
'types-setuptools>=80.9.0.20250822',
|
|
320
320
|
]
|
|
@@ -329,7 +329,7 @@ deps = [
|
|
|
329
329
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
330
330
|
'flake8>=7.3.0',
|
|
331
331
|
'flake8-in-file-ignores>=0.3.0',
|
|
332
|
-
'flake8-pyproject>=1.2.
|
|
332
|
+
'flake8-pyproject>=1.2.4',
|
|
333
333
|
'flake8-docstrings>=1.7.0',
|
|
334
334
|
'pep8-naming>=0.15.1',
|
|
335
335
|
'flake8-builtins>=3.1.0',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author-email: Adam Karpierz <adam@karpierz.net>
|
|
6
6
|
Maintainer-email: Adam Karpierz <adam@karpierz.net>
|
|
@@ -40,10 +40,10 @@ Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
|
40
40
|
Requires-Dist: sphinx-toolbox>=4.0.0; extra == "doc"
|
|
41
41
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
42
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
43
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.2; extra == "doc"
|
|
44
44
|
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
|
|
45
45
|
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
46
|
+
Requires-Dist: nbsphinx>=0.9.8; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
49
|
Requires-Dist: rich>=14.2.0; extra == "test"
|
|
@@ -279,7 +279,7 @@ Authors
|
|
|
279
279
|
|
|
280
280
|
.. |package| replace:: annotate
|
|
281
281
|
.. |package_bold| replace:: **annotate**
|
|
282
|
-
.. |copyright| replace:: Copyright (c) 2012-
|
|
282
|
+
.. |copyright| replace:: Copyright (c) 2012-2026 Adam Karpierz
|
|
283
283
|
.. |respository| replace:: https://github.com/karpierz/annotate.git
|
|
284
284
|
.. _Development page: https://github.com/karpierz/annotate
|
|
285
285
|
.. _PyPI record: https://pypi.org/project/annotate/
|
|
@@ -288,7 +288,7 @@ Authors
|
|
|
288
288
|
Changelog
|
|
289
289
|
=========
|
|
290
290
|
|
|
291
|
-
2.0.
|
|
291
|
+
2.0.8 (2025-11-30)
|
|
292
292
|
------------------
|
|
293
293
|
- Mark the package as typed.
|
|
294
294
|
- 100% code coverage.
|
|
@@ -8,10 +8,10 @@ sphinx-autodoc-typehints>=3.0.1
|
|
|
8
8
|
sphinx-toolbox>=4.0.0
|
|
9
9
|
sphinx-tabs>=3.4.5
|
|
10
10
|
sphinx-copybutton>=0.5.2
|
|
11
|
-
sphinxcontrib-spelling>=8.0.
|
|
11
|
+
sphinxcontrib-spelling>=8.0.2
|
|
12
12
|
sphinx-lint>=1.0.2
|
|
13
13
|
restructuredtext-lint>=2.0.2
|
|
14
|
-
nbsphinx>=0.9.
|
|
14
|
+
nbsphinx>=0.9.8
|
|
15
15
|
|
|
16
16
|
[test]
|
|
17
17
|
deepdiff>=8.6.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|