annotate 1.2.2__tar.gz → 1.2.3__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-1.2.2 → annotate-1.2.3}/CHANGES.rst +4 -0
- {annotate-1.2.2 → annotate-1.2.3}/PKG-INFO +7 -3
- {annotate-1.2.2 → annotate-1.2.3}/pyproject.toml +8 -8
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate.egg-info/PKG-INFO +7 -3
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate.egg-info/requires.txt +2 -2
- {annotate-1.2.2 → annotate-1.2.3}/.readthedocs.yml +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/LICENSE +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/MANIFEST.in +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/README.rst +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/docs/CHANGES.rst +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/docs/README.rst +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/docs/_static/.keep +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/docs/_templates/.keep +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/docs/conf.py +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/docs/index.rst +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/setup.cfg +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate/__about__.py +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate/__init__.py +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate/_annotate.py +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate.egg-info/SOURCES.txt +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate.egg-info/dependency_links.txt +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate.egg-info/top_level.txt +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/src/annotate.egg-info/zip-safe +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/tests/__init__.py +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/tests/__main__.py +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/tests/data/.keep +0 -0
- {annotate-1.2.2 → annotate-1.2.3}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -32,8 +32,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
32
32
|
Requires-Python: <4.0.0,>=3.10.0
|
|
33
33
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
34
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist: setuptools>=80.
|
|
36
|
-
Requires-Dist: pkg-about>=1.3.
|
|
35
|
+
Requires-Dist: setuptools>=80.9.0
|
|
36
|
+
Requires-Dist: pkg-about>=1.3.6
|
|
37
37
|
Provides-Extra: doc
|
|
38
38
|
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
39
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
@@ -288,6 +288,10 @@ Authors
|
|
|
288
288
|
Changelog
|
|
289
289
|
=========
|
|
290
290
|
|
|
291
|
+
1.2.3 (2025-06-11)
|
|
292
|
+
------------------
|
|
293
|
+
- Setup (dependencies) update.
|
|
294
|
+
|
|
291
295
|
1.2.2 (2025-05-15)
|
|
292
296
|
------------------
|
|
293
297
|
- The distribution is now created using 'build' instead of 'setuptools'.
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=80.
|
|
6
|
+
requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.26.0']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'annotate'
|
|
10
|
-
version = '1.2.
|
|
10
|
+
version = '1.2.3'
|
|
11
11
|
description = '''Decorator to set a function's __annotations__ like Py3.'''
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz' },
|
|
@@ -45,8 +45,8 @@ classifiers = [
|
|
|
45
45
|
requires-python = '>=3.10.0,<4.0.0'
|
|
46
46
|
dependencies = [
|
|
47
47
|
# mandatory
|
|
48
|
-
'setuptools>=80.
|
|
49
|
-
'pkg-about>=1.3.
|
|
48
|
+
'setuptools>=80.9.0',
|
|
49
|
+
'pkg-about>=1.3.6',
|
|
50
50
|
# others
|
|
51
51
|
]
|
|
52
52
|
dynamic = ['readme']
|
|
@@ -160,7 +160,7 @@ skip_missing_interpreters = true
|
|
|
160
160
|
requires = [
|
|
161
161
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
162
162
|
'virtualenv>=20.31.2',
|
|
163
|
-
'tox-backtick>=0.6.
|
|
163
|
+
'tox-backtick>=0.6.4',
|
|
164
164
|
]
|
|
165
165
|
[tool.tox.labels]
|
|
166
166
|
py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
|
|
@@ -175,7 +175,7 @@ deploy = [{replace='ref',of=['tool','tox','labels','build'],extend=true}, 'publi
|
|
|
175
175
|
base_python = ['python3.13']
|
|
176
176
|
deps = [
|
|
177
177
|
'pip>=25.1.1',
|
|
178
|
-
'setuptools>=80.
|
|
178
|
+
'setuptools>=80.9.0',
|
|
179
179
|
]
|
|
180
180
|
package_subdir = 'annotate'
|
|
181
181
|
|
|
@@ -217,9 +217,9 @@ commands = [
|
|
|
217
217
|
]
|
|
218
218
|
deps = [
|
|
219
219
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
220
|
-
'coverage>=7.8.
|
|
220
|
+
'coverage>=7.8.2',
|
|
221
221
|
'covdefaults>=2.3.0',
|
|
222
|
-
'diff-cover>=9.2
|
|
222
|
+
'diff-cover>=9.3.2',
|
|
223
223
|
]
|
|
224
224
|
|
|
225
225
|
[tool.tox.env.'docs']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -32,8 +32,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
32
32
|
Requires-Python: <4.0.0,>=3.10.0
|
|
33
33
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
34
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist: setuptools>=80.
|
|
36
|
-
Requires-Dist: pkg-about>=1.3.
|
|
35
|
+
Requires-Dist: setuptools>=80.9.0
|
|
36
|
+
Requires-Dist: pkg-about>=1.3.6
|
|
37
37
|
Provides-Extra: doc
|
|
38
38
|
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
39
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
@@ -288,6 +288,10 @@ Authors
|
|
|
288
288
|
Changelog
|
|
289
289
|
=========
|
|
290
290
|
|
|
291
|
+
1.2.3 (2025-06-11)
|
|
292
|
+
------------------
|
|
293
|
+
- Setup (dependencies) update.
|
|
294
|
+
|
|
291
295
|
1.2.2 (2025-05-15)
|
|
292
296
|
------------------
|
|
293
297
|
- The distribution is now created using 'build' instead of 'setuptools'.
|
|
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
|