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.
Files changed (29) hide show
  1. {annotate-2.4.3 → annotate-2.4.4}/CHANGES.rst +4 -0
  2. {annotate-2.4.3/src/annotate.egg-info → annotate-2.4.4}/PKG-INFO +2 -2
  3. {annotate-2.4.3 → annotate-2.4.4}/noxfile.py +1 -1
  4. {annotate-2.4.3 → annotate-2.4.4}/pyproject.toml +10 -10
  5. {annotate-2.4.3 → annotate-2.4.4/src/annotate.egg-info}/PKG-INFO +2 -2
  6. annotate-2.4.4/src/annotate.egg-info/requires.txt +2 -0
  7. annotate-2.4.3/src/annotate.egg-info/requires.txt +0 -2
  8. {annotate-2.4.3 → annotate-2.4.4}/LICENSE +0 -0
  9. {annotate-2.4.3 → annotate-2.4.4}/MANIFEST.in +0 -0
  10. {annotate-2.4.3 → annotate-2.4.4}/README.rst +0 -0
  11. {annotate-2.4.3 → annotate-2.4.4}/docs/CHANGES.rst +0 -0
  12. {annotate-2.4.3 → annotate-2.4.4}/docs/README.rst +0 -0
  13. {annotate-2.4.3 → annotate-2.4.4}/docs/_static/.keep +0 -0
  14. {annotate-2.4.3 → annotate-2.4.4}/docs/_templates/.keep +0 -0
  15. {annotate-2.4.3 → annotate-2.4.4}/docs/conf.py +0 -0
  16. {annotate-2.4.3 → annotate-2.4.4}/docs/index.rst +0 -0
  17. {annotate-2.4.3 → annotate-2.4.4}/setup.cfg +0 -0
  18. {annotate-2.4.3 → annotate-2.4.4}/src/annotate/__about__.py +0 -0
  19. {annotate-2.4.3 → annotate-2.4.4}/src/annotate/__init__.py +0 -0
  20. {annotate-2.4.3 → annotate-2.4.4}/src/annotate/_annotate.py +0 -0
  21. {annotate-2.4.3 → annotate-2.4.4}/src/annotate/py.typed +0 -0
  22. {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/SOURCES.txt +0 -0
  23. {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/dependency_links.txt +0 -0
  24. {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/top_level.txt +0 -0
  25. {annotate-2.4.3 → annotate-2.4.4}/src/annotate.egg-info/zip-safe +0 -0
  26. {annotate-2.4.3 → annotate-2.4.4}/tests/__init__.py +0 -0
  27. {annotate-2.4.3 → annotate-2.4.4}/tests/__main__.py +0 -0
  28. {annotate-2.4.3 → annotate-2.4.4}/tests/data/.keep +0 -0
  29. {annotate-2.4.3 → annotate-2.4.4}/tests/test_main.py +0 -0
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 2.4.4 (2026-08-20)
5
+ ------------------
6
+ - Setup update and improvement.
7
+
4
8
  2.4.3 (2026-06-01)
5
9
  ------------------
6
10
  - Added support for GraalPy 3.12
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: annotate
3
- Version: 2.4.3
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.15.0
36
+ Requires-Dist: typing-extensions>=4.16.0
37
37
  Requires-Dist: pkg-about>=2.4.0
38
38
  Dynamic: license-file
39
39
 
@@ -2,7 +2,7 @@
2
2
  # SPDX-License-Identifier: Zlib
3
3
 
4
4
  # /// script
5
- # dependencies = ["nox>=2026.4.10", "nox_ext", "nox_lib"]
5
+ # dependencies = ["nox>=2026.8.17", "nox_ext", "nox_lib"]
6
6
  # ///
7
7
 
8
8
  from __future__ import annotations
@@ -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.2.0" ]
6
+ requires = [ "setuptools>=81.0.0", "packaging>=26.3.0" ]
7
7
 
8
8
  [project]
9
9
  name = "annotate"
10
- version = "2.4.3"
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.15.0",
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.2; platform_python_implementation!='GraalVM'",
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.14.1",
72
+ "coverage>=7.15.4",
73
73
  "covdefaults>=2.3.0",
74
- "diff-cover>=10.3.0",
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>=6.2.0",
95
+ "twine>=7.0.0",
96
96
  ]
97
97
  publish = [
98
- "twine>=6.2.0",
98
+ "twine>=7.0.0",
99
99
  ]
100
100
  typing = [
101
101
  { include-group = "base" },
102
- "mypy>=2.1.0",
103
- "mypy_extensions>=1.1.0",
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
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.15.0
36
+ Requires-Dist: typing-extensions>=4.16.0
37
37
  Requires-Dist: pkg-about>=2.4.0
38
38
  Dynamic: license-file
39
39
 
@@ -0,0 +1,2 @@
1
+ typing-extensions>=4.16.0
2
+ pkg-about>=2.4.0
@@ -1,2 +0,0 @@
1
- typing-extensions>=4.15.0
2
- pkg-about>=2.4.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
File without changes
File without changes
File without changes