annotate 2.4.3__tar.gz → 2.4.4__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.4.3 → annotate-2.4.4}/CHANGES.rst +4 -0
- {annotate-2.4.3/src/annotate.egg-info → annotate-2.4.4}/PKG-INFO +2 -2
- {annotate-2.4.3 → annotate-2.4.4}/noxfile.py +1 -1
- {annotate-2.4.3 → annotate-2.4.4}/pyproject.toml +10 -10
- {annotate-2.4.3 → annotate-2.4.4/src/annotate.egg-info}/PKG-INFO +2 -2
- annotate-2.4.4/src/annotate.egg-info/requires.txt +2 -0
- annotate-2.4.3/src/annotate.egg-info/requires.txt +0 -2
- {annotate-2.4.3 → annotate-2.4.4}/LICENSE +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/MANIFEST.in +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/README.rst +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/docs/CHANGES.rst +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/docs/README.rst +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/docs/_static/.keep +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/docs/_templates/.keep +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/docs/conf.py +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/docs/index.rst +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/setup.cfg +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate/__about__.py +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate/__init__.py +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate/_annotate.py +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate/py.typed +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/SOURCES.txt +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/dependency_links.txt +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/top_level.txt +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/zip-safe +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/tests/__init__.py +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/tests/__main__.py +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/tests/data/.keep +0 -0
- {annotate-2.4.3 → annotate-2.4.4}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.4
|
|
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>
|
|
@@ -33,7 +33,7 @@ Classifier: Typing :: Typed
|
|
|
33
33
|
Requires-Python: <4.0.0,>=3.11.0
|
|
34
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
35
|
License-File: LICENSE
|
|
36
|
-
Requires-Dist: typing-extensions>=4.
|
|
36
|
+
Requires-Dist: typing-extensions>=4.16.0
|
|
37
37
|
Requires-Dist: pkg-about>=2.4.0
|
|
38
38
|
Dynamic: license-file
|
|
39
39
|
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = "setuptools.build_meta"
|
|
6
|
-
requires = [ "setuptools>=81.0.0", "packaging>=26.
|
|
6
|
+
requires = [ "setuptools>=81.0.0", "packaging>=26.3.0" ]
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "annotate"
|
|
10
|
-
version = "2.4.
|
|
10
|
+
version = "2.4.4"
|
|
11
11
|
description = "Decorator to set a function's __annotations__ like Py3."
|
|
12
12
|
keywords = [ "annotate", "typing", "decorator" ]
|
|
13
13
|
license = "Zlib"
|
|
@@ -50,14 +50,14 @@ dynamic = [ "readme" ]
|
|
|
50
50
|
# entry-points.annotate.magical.epoint = "annotate:main_epoint"
|
|
51
51
|
dependencies = [
|
|
52
52
|
# mandatory
|
|
53
|
-
"typing-extensions>=4.
|
|
53
|
+
"typing-extensions>=4.16.0",
|
|
54
54
|
"pkg-about>=2.4.0",
|
|
55
55
|
# others
|
|
56
56
|
]
|
|
57
57
|
|
|
58
58
|
[dependency-groups]
|
|
59
59
|
base = [
|
|
60
|
-
"pip>=26.1
|
|
60
|
+
"pip>=26.2.1; platform_python_implementation!='GraalVM'",
|
|
61
61
|
"pip>=24.3.1; platform_python_implementation=='GraalVM'",
|
|
62
62
|
"setuptools>=81.0.0",
|
|
63
63
|
]
|
|
@@ -69,9 +69,9 @@ test = [
|
|
|
69
69
|
]
|
|
70
70
|
coverage = [
|
|
71
71
|
{ include-group = "test" },
|
|
72
|
-
"coverage>=7.
|
|
72
|
+
"coverage>=7.15.4",
|
|
73
73
|
"covdefaults>=2.3.0",
|
|
74
|
-
"diff-cover>=10.
|
|
74
|
+
"diff-cover>=10.5.1",
|
|
75
75
|
]
|
|
76
76
|
docs = [
|
|
77
77
|
{ include-group = "base" },
|
|
@@ -92,15 +92,15 @@ build = [
|
|
|
92
92
|
{ include-group = "test" },
|
|
93
93
|
"check-manifest>=0.51",
|
|
94
94
|
"build>=1.5.0",
|
|
95
|
-
"twine>=
|
|
95
|
+
"twine>=7.0.0",
|
|
96
96
|
]
|
|
97
97
|
publish = [
|
|
98
|
-
"twine>=
|
|
98
|
+
"twine>=7.0.0",
|
|
99
99
|
]
|
|
100
100
|
typing = [
|
|
101
101
|
{ include-group = "base" },
|
|
102
|
-
"mypy>=2.1
|
|
103
|
-
"
|
|
102
|
+
"mypy>=2.3.1",
|
|
103
|
+
"mypy-extensions>=1.1.0",
|
|
104
104
|
"types-setuptools>=81.0.0.20260209",
|
|
105
105
|
]
|
|
106
106
|
lint = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.4
|
|
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>
|
|
@@ -33,7 +33,7 @@ Classifier: Typing :: Typed
|
|
|
33
33
|
Requires-Python: <4.0.0,>=3.11.0
|
|
34
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
35
35
|
License-File: LICENSE
|
|
36
|
-
Requires-Dist: typing-extensions>=4.
|
|
36
|
+
Requires-Dist: typing-extensions>=4.16.0
|
|
37
37
|
Requires-Dist: pkg-about>=2.4.0
|
|
38
38
|
Dynamic: license-file
|
|
39
39
|
|
|
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
|