renumerate 1.3.1__tar.gz → 1.3.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.

Potentially problematic release.


This version of renumerate might be problematic. Click here for more details.

Files changed (27) hide show
  1. {renumerate-1.3.1 → renumerate-1.3.3}/CHANGES.rst +5 -0
  2. {renumerate-1.3.1 → renumerate-1.3.3}/PKG-INFO +10 -5
  3. {renumerate-1.3.1 → renumerate-1.3.3}/pyproject.toml +13 -13
  4. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate.egg-info/PKG-INFO +10 -5
  5. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate.egg-info/requires.txt +4 -4
  6. {renumerate-1.3.1 → renumerate-1.3.3}/.readthedocs.yml +0 -0
  7. {renumerate-1.3.1 → renumerate-1.3.3}/LICENSE +0 -0
  8. {renumerate-1.3.1 → renumerate-1.3.3}/MANIFEST.in +0 -0
  9. {renumerate-1.3.1 → renumerate-1.3.3}/README.rst +0 -0
  10. {renumerate-1.3.1 → renumerate-1.3.3}/docs/CHANGES.rst +0 -0
  11. {renumerate-1.3.1 → renumerate-1.3.3}/docs/README.rst +0 -0
  12. {renumerate-1.3.1 → renumerate-1.3.3}/docs/_static/.keep +0 -0
  13. {renumerate-1.3.1 → renumerate-1.3.3}/docs/_templates/.keep +0 -0
  14. {renumerate-1.3.1 → renumerate-1.3.3}/docs/conf.py +0 -0
  15. {renumerate-1.3.1 → renumerate-1.3.3}/docs/index.rst +0 -0
  16. {renumerate-1.3.1 → renumerate-1.3.3}/setup.cfg +0 -0
  17. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate/__about__.py +0 -0
  18. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate/__init__.py +0 -0
  19. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate/_renumerate.py +0 -0
  20. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate.egg-info/SOURCES.txt +0 -0
  21. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate.egg-info/dependency_links.txt +0 -0
  22. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate.egg-info/top_level.txt +0 -0
  23. {renumerate-1.3.1 → renumerate-1.3.3}/src/renumerate.egg-info/zip-safe +0 -0
  24. {renumerate-1.3.1 → renumerate-1.3.3}/tests/__init__.py +0 -0
  25. {renumerate-1.3.1 → renumerate-1.3.3}/tests/__main__.py +0 -0
  26. {renumerate-1.3.1 → renumerate-1.3.3}/tests/data/.keep +0 -0
  27. {renumerate-1.3.1 → renumerate-1.3.3}/tests/test_main.py +0 -0
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.3 (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.3.1 (2025-05-04)
5
10
  ------------------
6
11
  - Setup (dependencies) update.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: renumerate
3
- Version: 1.3.1
3
+ Version: 1.3.3
4
4
  Summary: Reverse enumerate.
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
 
@@ -177,6 +177,11 @@ Authors
177
177
  Changelog
178
178
  =========
179
179
 
180
+ 1.3.3 (2025-05-15)
181
+ ------------------
182
+ - The distribution is now created using 'build' instead of 'setuptools'.
183
+ - Setup (dependencies) update (due to regressions in tox and setuptools).
184
+
180
185
  1.3.1 (2025-05-04)
181
186
  ------------------
182
187
  - 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 = 'renumerate'
10
- version = '1.3.1'
10
+ version = '1.3.3'
11
11
  description = 'Reverse enumerate.'
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 = 'renumerate'
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: renumerate
3
- Version: 1.3.1
3
+ Version: 1.3.3
4
4
  Summary: Reverse enumerate.
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
 
@@ -177,6 +177,11 @@ Authors
177
177
  Changelog
178
178
  =========
179
179
 
180
+ 1.3.3 (2025-05-15)
181
+ ------------------
182
+ - The distribution is now created using 'build' instead of 'setuptools'.
183
+ - Setup (dependencies) update (due to regressions in tox and setuptools).
184
+
180
185
  1.3.1 (2025-05-04)
181
186
  ------------------
182
187
  - 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