annotate 2.0.4__tar.gz → 2.0.6__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.4 → annotate-2.0.6}/CHANGES.rst +1 -1
- {annotate-2.0.4 → annotate-2.0.6}/PKG-INFO +6 -6
- {annotate-2.0.4 → annotate-2.0.6}/pyproject.toml +7 -7
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate.egg-info/PKG-INFO +6 -6
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate.egg-info/requires.txt +4 -4
- {annotate-2.0.4 → annotate-2.0.6}/.readthedocs.yml +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/LICENSE +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/MANIFEST.in +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/README.rst +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/docs/CHANGES.rst +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/docs/README.rst +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/docs/_static/.keep +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/docs/_templates/.keep +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/docs/conf.py +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/docs/index.rst +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/setup.cfg +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate/__about__.py +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate/__init__.py +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate/_annotate.py +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate/py.typed +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate.egg-info/SOURCES.txt +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate.egg-info/dependency_links.txt +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate.egg-info/top_level.txt +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/src/annotate.egg-info/zip-safe +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/tests/__init__.py +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/tests/__main__.py +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/tests/data/.keep +0 -0
- {annotate-2.0.4 → annotate-2.0.6}/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.6
|
|
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>
|
|
@@ -32,17 +32,17 @@ Requires-Python: <4.0.0,>=3.10.0
|
|
|
32
32
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
33
|
License-File: LICENSE
|
|
34
34
|
Requires-Dist: setuptools>=80.9.0
|
|
35
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: typing-extensions>=4.15.0
|
|
36
36
|
Requires-Dist: pkg-about>=2.0.0
|
|
37
37
|
Provides-Extra: doc
|
|
38
|
-
Requires-Dist:
|
|
38
|
+
Requires-Dist: sphinx>=8.1.3; extra == "doc"
|
|
39
39
|
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
43
|
Requires-Dist: sphinxcontrib-spelling>=8.0.1; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinx-lint>=1.0.
|
|
45
|
-
Requires-Dist: restructuredtext-lint>=
|
|
44
|
+
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
|
|
45
|
+
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
|
|
46
46
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
@@ -288,7 +288,7 @@ Authors
|
|
|
288
288
|
Changelog
|
|
289
289
|
=========
|
|
290
290
|
|
|
291
|
-
2.0.
|
|
291
|
+
2.0.6 (2025-11-27)
|
|
292
292
|
------------------
|
|
293
293
|
- Mark the package as typed.
|
|
294
294
|
- 100% code coverage.
|
|
@@ -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.6'
|
|
11
11
|
description = '''Decorator to set a function's __annotations__ like Py3.'''
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz', email = 'adam@karpierz.net' },
|
|
@@ -45,20 +45,20 @@ requires-python = '>=3.10.0,<4.0.0'
|
|
|
45
45
|
dependencies = [
|
|
46
46
|
# mandatory
|
|
47
47
|
'setuptools>=80.9.0',
|
|
48
|
-
'
|
|
48
|
+
'typing-extensions>=4.15.0',
|
|
49
49
|
'pkg-about>=2.0.0',
|
|
50
50
|
# others
|
|
51
51
|
]
|
|
52
52
|
dynamic = ['readme']
|
|
53
53
|
optional-dependencies.'doc' = [
|
|
54
|
-
'
|
|
54
|
+
'sphinx>=8.1.3',
|
|
55
55
|
'sphinx-autodoc-typehints>=3.0.1',
|
|
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
59
|
'sphinxcontrib-spelling>=8.0.1',
|
|
60
|
-
'sphinx-lint>=1.0.
|
|
61
|
-
'restructuredtext-lint>=
|
|
60
|
+
'sphinx-lint>=1.0.2',
|
|
61
|
+
'restructuredtext-lint>=2.0.2',
|
|
62
62
|
'nbsphinx>=0.9.7',
|
|
63
63
|
]
|
|
64
64
|
optional-dependencies.'test' = [
|
|
@@ -257,9 +257,9 @@ commands = [
|
|
|
257
257
|
]
|
|
258
258
|
deps = [
|
|
259
259
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
260
|
-
'coverage>=7.
|
|
260
|
+
'coverage>=7.12.0',
|
|
261
261
|
'covdefaults>=2.3.0',
|
|
262
|
-
'diff-cover>=9.7.
|
|
262
|
+
'diff-cover>=9.7.2',
|
|
263
263
|
]
|
|
264
264
|
|
|
265
265
|
[tool.tox.env.'docs']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.6
|
|
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>
|
|
@@ -32,17 +32,17 @@ Requires-Python: <4.0.0,>=3.10.0
|
|
|
32
32
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
33
|
License-File: LICENSE
|
|
34
34
|
Requires-Dist: setuptools>=80.9.0
|
|
35
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: typing-extensions>=4.15.0
|
|
36
36
|
Requires-Dist: pkg-about>=2.0.0
|
|
37
37
|
Provides-Extra: doc
|
|
38
|
-
Requires-Dist:
|
|
38
|
+
Requires-Dist: sphinx>=8.1.3; extra == "doc"
|
|
39
39
|
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
43
|
Requires-Dist: sphinxcontrib-spelling>=8.0.1; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinx-lint>=1.0.
|
|
45
|
-
Requires-Dist: restructuredtext-lint>=
|
|
44
|
+
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
|
|
45
|
+
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
|
|
46
46
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
@@ -288,7 +288,7 @@ Authors
|
|
|
288
288
|
Changelog
|
|
289
289
|
=========
|
|
290
290
|
|
|
291
|
-
2.0.
|
|
291
|
+
2.0.6 (2025-11-27)
|
|
292
292
|
------------------
|
|
293
293
|
- Mark the package as typed.
|
|
294
294
|
- 100% code coverage.
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
setuptools>=80.9.0
|
|
2
|
-
|
|
2
|
+
typing-extensions>=4.15.0
|
|
3
3
|
pkg-about>=2.0.0
|
|
4
4
|
|
|
5
5
|
[doc]
|
|
6
|
-
|
|
6
|
+
sphinx>=8.1.3
|
|
7
7
|
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
11
|
sphinxcontrib-spelling>=8.0.1
|
|
12
|
-
sphinx-lint>=1.0.
|
|
13
|
-
restructuredtext-lint>=
|
|
12
|
+
sphinx-lint>=1.0.2
|
|
13
|
+
restructuredtext-lint>=2.0.2
|
|
14
14
|
nbsphinx>=0.9.7
|
|
15
15
|
|
|
16
16
|
[test]
|
|
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
|
|
File without changes
|
|
File without changes
|