renumerate 1.3.2__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.2 → renumerate-1.3.3}/CHANGES.rst +2 -1
  2. {renumerate-1.3.2 → renumerate-1.3.3}/PKG-INFO +4 -3
  3. {renumerate-1.3.2 → renumerate-1.3.3}/pyproject.toml +5 -5
  4. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate.egg-info/PKG-INFO +4 -3
  5. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate.egg-info/requires.txt +1 -1
  6. {renumerate-1.3.2 → renumerate-1.3.3}/.readthedocs.yml +0 -0
  7. {renumerate-1.3.2 → renumerate-1.3.3}/LICENSE +0 -0
  8. {renumerate-1.3.2 → renumerate-1.3.3}/MANIFEST.in +0 -0
  9. {renumerate-1.3.2 → renumerate-1.3.3}/README.rst +0 -0
  10. {renumerate-1.3.2 → renumerate-1.3.3}/docs/CHANGES.rst +0 -0
  11. {renumerate-1.3.2 → renumerate-1.3.3}/docs/README.rst +0 -0
  12. {renumerate-1.3.2 → renumerate-1.3.3}/docs/_static/.keep +0 -0
  13. {renumerate-1.3.2 → renumerate-1.3.3}/docs/_templates/.keep +0 -0
  14. {renumerate-1.3.2 → renumerate-1.3.3}/docs/conf.py +0 -0
  15. {renumerate-1.3.2 → renumerate-1.3.3}/docs/index.rst +0 -0
  16. {renumerate-1.3.2 → renumerate-1.3.3}/setup.cfg +0 -0
  17. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate/__about__.py +0 -0
  18. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate/__init__.py +0 -0
  19. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate/_renumerate.py +0 -0
  20. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate.egg-info/SOURCES.txt +0 -0
  21. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate.egg-info/dependency_links.txt +0 -0
  22. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate.egg-info/top_level.txt +0 -0
  23. {renumerate-1.3.2 → renumerate-1.3.3}/src/renumerate.egg-info/zip-safe +0 -0
  24. {renumerate-1.3.2 → renumerate-1.3.3}/tests/__init__.py +0 -0
  25. {renumerate-1.3.2 → renumerate-1.3.3}/tests/__main__.py +0 -0
  26. {renumerate-1.3.2 → renumerate-1.3.3}/tests/data/.keep +0 -0
  27. {renumerate-1.3.2 → renumerate-1.3.3}/tests/test_main.py +0 -0
@@ -1,8 +1,9 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
- 1.3.2 (2025-05-15)
4
+ 1.3.3 (2025-05-15)
5
5
  ------------------
6
+ - The distribution is now created using 'build' instead of 'setuptools'.
6
7
  - Setup (dependencies) update (due to regressions in tox and setuptools).
7
8
 
8
9
  1.3.1 (2025-05-04)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: renumerate
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: Reverse enumerate.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -33,7 +33,7 @@ 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
35
  Requires-Dist: setuptools>=80.7.1
36
- Requires-Dist: pkg-about>=1.3.4
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"
@@ -177,8 +177,9 @@ Authors
177
177
  Changelog
178
178
  =========
179
179
 
180
- 1.3.2 (2025-05-15)
180
+ 1.3.3 (2025-05-15)
181
181
  ------------------
182
+ - The distribution is now created using 'build' instead of 'setuptools'.
182
183
  - Setup (dependencies) update (due to regressions in tox and setuptools).
183
184
 
184
185
  1.3.1 (2025-05-04)
@@ -7,7 +7,7 @@ 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.2'
10
+ version = '1.3.3'
11
11
  description = 'Reverse enumerate.'
12
12
  authors = [
13
13
  { name = 'Adam Karpierz' },
@@ -46,7 +46,7 @@ requires-python = '>=3.10.0,<4.0.0'
46
46
  dependencies = [
47
47
  # mandatory
48
48
  'setuptools>=80.7.1',
49
- 'pkg-about>=1.3.4',
49
+ 'pkg-about>=1.3.5',
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.2',
163
+ 'tox-backtick>=0.6.3',
164
164
  ]
165
165
  [tool.tox.labels]
166
166
  py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: renumerate
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: Reverse enumerate.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -33,7 +33,7 @@ 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
35
  Requires-Dist: setuptools>=80.7.1
36
- Requires-Dist: pkg-about>=1.3.4
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"
@@ -177,8 +177,9 @@ Authors
177
177
  Changelog
178
178
  =========
179
179
 
180
- 1.3.2 (2025-05-15)
180
+ 1.3.3 (2025-05-15)
181
181
  ------------------
182
+ - The distribution is now created using 'build' instead of 'setuptools'.
182
183
  - Setup (dependencies) update (due to regressions in tox and setuptools).
183
184
 
184
185
  1.3.1 (2025-05-04)
@@ -1,5 +1,5 @@
1
1
  setuptools>=80.7.1
2
- pkg-about>=1.3.4
2
+ pkg-about>=1.3.5
3
3
 
4
4
  [doc]
5
5
  Sphinx>=8.1.3
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