annotate 1.2.1__tar.gz → 1.2.2__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 (27) hide show
  1. {annotate-1.2.1 → annotate-1.2.2}/CHANGES.rst +5 -0
  2. {annotate-1.2.1 → annotate-1.2.2}/PKG-INFO +10 -5
  3. {annotate-1.2.1 → annotate-1.2.2}/pyproject.toml +13 -13
  4. {annotate-1.2.1 → annotate-1.2.2}/src/annotate.egg-info/PKG-INFO +10 -5
  5. {annotate-1.2.1 → annotate-1.2.2}/src/annotate.egg-info/requires.txt +4 -4
  6. {annotate-1.2.1 → annotate-1.2.2}/.readthedocs.yml +0 -0
  7. {annotate-1.2.1 → annotate-1.2.2}/LICENSE +0 -0
  8. {annotate-1.2.1 → annotate-1.2.2}/MANIFEST.in +0 -0
  9. {annotate-1.2.1 → annotate-1.2.2}/README.rst +0 -0
  10. {annotate-1.2.1 → annotate-1.2.2}/docs/CHANGES.rst +0 -0
  11. {annotate-1.2.1 → annotate-1.2.2}/docs/README.rst +0 -0
  12. {annotate-1.2.1 → annotate-1.2.2}/docs/_static/.keep +0 -0
  13. {annotate-1.2.1 → annotate-1.2.2}/docs/_templates/.keep +0 -0
  14. {annotate-1.2.1 → annotate-1.2.2}/docs/conf.py +0 -0
  15. {annotate-1.2.1 → annotate-1.2.2}/docs/index.rst +0 -0
  16. {annotate-1.2.1 → annotate-1.2.2}/setup.cfg +0 -0
  17. {annotate-1.2.1 → annotate-1.2.2}/src/annotate/__about__.py +0 -0
  18. {annotate-1.2.1 → annotate-1.2.2}/src/annotate/__init__.py +0 -0
  19. {annotate-1.2.1 → annotate-1.2.2}/src/annotate/_annotate.py +0 -0
  20. {annotate-1.2.1 → annotate-1.2.2}/src/annotate.egg-info/SOURCES.txt +0 -0
  21. {annotate-1.2.1 → annotate-1.2.2}/src/annotate.egg-info/dependency_links.txt +0 -0
  22. {annotate-1.2.1 → annotate-1.2.2}/src/annotate.egg-info/top_level.txt +0 -0
  23. {annotate-1.2.1 → annotate-1.2.2}/src/annotate.egg-info/zip-safe +0 -0
  24. {annotate-1.2.1 → annotate-1.2.2}/tests/__init__.py +0 -0
  25. {annotate-1.2.1 → annotate-1.2.2}/tests/__main__.py +0 -0
  26. {annotate-1.2.1 → annotate-1.2.2}/tests/data/.keep +0 -0
  27. {annotate-1.2.1 → annotate-1.2.2}/tests/test_main.py +0 -0
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.2.2 (2025-05-15)
5
+ ------------------
6
+ - The distribution is now created using 'build' instead of 'setuptools'.
7
+ - Setup (dependencies) update (due to regressions in tox and setuptools).
8
+
4
9
  1.2.1 (2025-05-04)
5
10
  ------------------
6
11
  - Setup (dependencies) update.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: annotate
3
- Version: 1.2.1
3
+ Version: 1.2.2
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,12 +32,12 @@ 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.3.1
36
- Requires-Dist: pkg-about>=1.3.3
35
+ Requires-Dist: setuptools>=80.7.1
36
+ Requires-Dist: pkg-about>=1.3.5
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"
40
- Requires-Dist: sphinx-toolbox>=3.9.0; extra == "doc"
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"
@@ -45,7 +45,7 @@ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
45
45
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
46
46
  Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
47
47
  Provides-Extra: test
48
- Requires-Dist: deepdiff>=8.4.2; extra == "test"
48
+ Requires-Dist: deepdiff>=8.5.0; extra == "test"
49
49
  Requires-Dist: rich>=14.0.0; extra == "test"
50
50
  Dynamic: license-file
51
51
 
@@ -288,6 +288,11 @@ Authors
288
288
  Changelog
289
289
  =========
290
290
 
291
+ 1.2.2 (2025-05-15)
292
+ ------------------
293
+ - The distribution is now created using 'build' instead of 'setuptools'.
294
+ - Setup (dependencies) update (due to regressions in tox and setuptools).
295
+
291
296
  1.2.1 (2025-05-04)
292
297
  ------------------
293
298
  - Setup (dependencies) update.
@@ -3,11 +3,11 @@
3
3
 
4
4
  [build-system]
5
5
  build-backend = 'setuptools.build_meta'
6
- requires = ['setuptools>=80.3.1', 'packaging>=25.0.0', 'tox>=4.25.0']
6
+ requires = ['setuptools>=80.7.1', 'packaging>=25.0.0', 'tox>=4.26.0']
7
7
 
8
8
  [project]
9
9
  name = 'annotate'
10
- version = '1.2.1'
10
+ version = '1.2.2'
11
11
  description = '''Decorator to set a function's __annotations__ like Py3.'''
12
12
  authors = [
13
13
  { name = 'Adam Karpierz' },
@@ -45,15 +45,15 @@ classifiers = [
45
45
  requires-python = '>=3.10.0,<4.0.0'
46
46
  dependencies = [
47
47
  # mandatory
48
- 'setuptools>=80.3.1',
49
- 'pkg-about>=1.3.3',
48
+ 'setuptools>=80.7.1',
49
+ 'pkg-about>=1.3.5',
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
- 'sphinx-toolbox>=3.9.0',
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',
@@ -62,7 +62,7 @@ optional-dependencies.'doc' = [
62
62
  'nbsphinx>=0.9.7',
63
63
  ]
64
64
  optional-dependencies.'test' = [
65
- 'deepdiff>=8.4.2',
65
+ 'deepdiff>=8.5.0',
66
66
  'rich>=14.0.0',
67
67
  ]
68
68
 
@@ -155,12 +155,12 @@ count = true
155
155
 
156
156
  [tool.tox]
157
157
  env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'coverage', 'lint', 'docs']
158
- min_version = '4.25.0'
158
+ min_version = '4.26.0'
159
159
  skip_missing_interpreters = true
160
160
  requires = [
161
161
  {replace='ref',of=['tool','tox','_','base','deps'],extend=true},
162
- 'virtualenv>=20.30.0',
163
- 'tox-backtick>=0.6.1',
162
+ 'virtualenv>=20.31.2',
163
+ 'tox-backtick>=0.6.3',
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.3.1',
178
+ 'setuptools>=80.7.1',
179
179
  ]
180
180
  package_subdir = 'annotate'
181
181
 
@@ -240,13 +240,13 @@ deps = [
240
240
  depends = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'docs']
241
241
  base_python = {replace='ref',of=['tool','tox','_','base','base_python']}
242
242
  commands = [
243
- ['{env_python}','-W','ignore','-c','from setuptools import setup ; setup()','--quiet','sdist','--formats=gztar'],
244
- ['{env_python}','-W','ignore','-c','from setuptools import setup ; setup()','--quiet','bdist_wheel'],
243
+ ['{env_python}','-m','build'],
245
244
  # check out for PyPi
246
245
  ['{env_python}','-m','twine','check','dist/*'],
247
246
  ]
248
247
  deps = [
249
248
  {replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
249
+ 'build>=1.2.2.post1',
250
250
  'twine>=6.1.0',
251
251
  ]
252
252
 
@@ -274,7 +274,7 @@ deps = [
274
274
  'flake8>=7.2.0',
275
275
  'flake8-pyproject>=1.2.3',
276
276
  'flake8-docstrings>=1.7.0',
277
- 'pep8-naming>=0.14.1',
277
+ 'pep8-naming>=0.15.1',
278
278
  'flake8-builtins>=2.5.0',
279
279
  'flake8-deprecated>=2.2.1',
280
280
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: annotate
3
- Version: 1.2.1
3
+ Version: 1.2.2
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,12 +32,12 @@ 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.3.1
36
- Requires-Dist: pkg-about>=1.3.3
35
+ Requires-Dist: setuptools>=80.7.1
36
+ Requires-Dist: pkg-about>=1.3.5
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"
40
- Requires-Dist: sphinx-toolbox>=3.9.0; extra == "doc"
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"
@@ -45,7 +45,7 @@ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
45
45
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
46
46
  Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
47
47
  Provides-Extra: test
48
- Requires-Dist: deepdiff>=8.4.2; extra == "test"
48
+ Requires-Dist: deepdiff>=8.5.0; extra == "test"
49
49
  Requires-Dist: rich>=14.0.0; extra == "test"
50
50
  Dynamic: license-file
51
51
 
@@ -288,6 +288,11 @@ Authors
288
288
  Changelog
289
289
  =========
290
290
 
291
+ 1.2.2 (2025-05-15)
292
+ ------------------
293
+ - The distribution is now created using 'build' instead of 'setuptools'.
294
+ - Setup (dependencies) update (due to regressions in tox and setuptools).
295
+
291
296
  1.2.1 (2025-05-04)
292
297
  ------------------
293
298
  - Setup (dependencies) update.
@@ -1,10 +1,10 @@
1
- setuptools>=80.3.1
2
- pkg-about>=1.3.3
1
+ setuptools>=80.7.1
2
+ pkg-about>=1.3.5
3
3
 
4
4
  [doc]
5
5
  Sphinx>=8.1.3
6
6
  sphinx-autodoc-typehints>=3.0.1
7
- sphinx-toolbox>=3.9.0
7
+ sphinx-toolbox>=4.0.0
8
8
  sphinx-tabs>=3.4.5
9
9
  sphinx-copybutton>=0.5.2
10
10
  sphinxcontrib-spelling>=8.0.1
@@ -13,5 +13,5 @@ restructuredtext-lint>=1.4.0
13
13
  nbsphinx>=0.9.7
14
14
 
15
15
  [test]
16
- deepdiff>=8.4.2
16
+ deepdiff>=8.5.0
17
17
  rich>=14.0.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