renumerate 1.2.7__tar.gz → 1.2.8__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.2.7 → renumerate-1.2.8}/CHANGES.rst +4 -0
  2. {renumerate-1.2.7 → renumerate-1.2.8}/PKG-INFO +10 -6
  3. {renumerate-1.2.7 → renumerate-1.2.8}/pyproject.toml +12 -12
  4. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate.egg-info/PKG-INFO +10 -6
  5. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate.egg-info/requires.txt +5 -5
  6. {renumerate-1.2.7 → renumerate-1.2.8}/.readthedocs.yml +0 -0
  7. {renumerate-1.2.7 → renumerate-1.2.8}/LICENSE +0 -0
  8. {renumerate-1.2.7 → renumerate-1.2.8}/MANIFEST.in +0 -0
  9. {renumerate-1.2.7 → renumerate-1.2.8}/README.rst +0 -0
  10. {renumerate-1.2.7 → renumerate-1.2.8}/docs/CHANGES.rst +0 -0
  11. {renumerate-1.2.7 → renumerate-1.2.8}/docs/README.rst +0 -0
  12. {renumerate-1.2.7 → renumerate-1.2.8}/docs/_static/.keep +0 -0
  13. {renumerate-1.2.7 → renumerate-1.2.8}/docs/_templates/.keep +0 -0
  14. {renumerate-1.2.7 → renumerate-1.2.8}/docs/conf.py +0 -0
  15. {renumerate-1.2.7 → renumerate-1.2.8}/docs/index.rst +0 -0
  16. {renumerate-1.2.7 → renumerate-1.2.8}/setup.cfg +0 -0
  17. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate/__about__.py +0 -0
  18. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate/__init__.py +0 -0
  19. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate/_renumerate.py +0 -0
  20. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate.egg-info/SOURCES.txt +0 -0
  21. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate.egg-info/dependency_links.txt +0 -0
  22. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate.egg-info/top_level.txt +0 -0
  23. {renumerate-1.2.7 → renumerate-1.2.8}/src/renumerate.egg-info/zip-safe +0 -0
  24. {renumerate-1.2.7 → renumerate-1.2.8}/tests/__init__.py +0 -0
  25. {renumerate-1.2.7 → renumerate-1.2.8}/tests/__main__.py +0 -0
  26. {renumerate-1.2.7 → renumerate-1.2.8}/tests/data/.keep +0 -0
  27. {renumerate-1.2.7 → renumerate-1.2.8}/tests/test_main.py +0 -0
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.2.8 (2025-03-15)
5
+ ------------------
6
+ - Setup (dependencies) update.
7
+
4
8
  1.2.7 (2025-02-14)
5
9
  ------------------
6
10
  - Setup (dependencies) update.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: renumerate
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: Reverse enumerate.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -33,20 +33,20 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
33
  Requires-Python: <4.0.0,>=3.9.0
34
34
  Description-Content-Type: text/x-rst; charset=UTF-8
35
35
  License-File: LICENSE
36
- Requires-Dist: setuptools>=75.8.0
37
- Requires-Dist: pkg-about>=1.2.9
36
+ Requires-Dist: setuptools>=76.0.0
37
+ Requires-Dist: pkg-about>=1.2.10
38
38
  Provides-Extra: doc
39
39
  Requires-Dist: Sphinx>=7.4.7; extra == "doc"
40
40
  Requires-Dist: sphinx-autodoc-typehints>=2.3.0; extra == "doc"
41
- Requires-Dist: sphinx-toolbox>=3.8.2; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.9.0; extra == "doc"
42
42
  Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
43
  Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
44
  Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
45
45
  Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
46
46
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
47
- Requires-Dist: nbsphinx>=0.9.6; extra == "doc"
47
+ Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
48
48
  Provides-Extra: test
49
- Requires-Dist: deepdiff>=8.2.0; extra == "test"
49
+ Requires-Dist: deepdiff>=8.3.0; extra == "test"
50
50
  Requires-Dist: rich>=13.9.4; extra == "test"
51
51
 
52
52
  renumerate
@@ -177,6 +177,10 @@ Authors
177
177
  Changelog
178
178
  =========
179
179
 
180
+ 1.2.8 (2025-03-15)
181
+ ------------------
182
+ - Setup (dependencies) update.
183
+
180
184
  1.2.7 (2025-02-14)
181
185
  ------------------
182
186
  - Setup (dependencies) update.
@@ -3,11 +3,11 @@
3
3
 
4
4
  [build-system]
5
5
  build-backend = 'setuptools.build_meta'
6
- requires = ['setuptools>=75.8.0', 'packaging>=24.2.0', 'tox>=4.24.1']
6
+ requires = ['setuptools>=76.0.0', 'packaging>=24.2.0', 'tox>=4.24.2']
7
7
 
8
8
  [project]
9
9
  name = 'renumerate'
10
- version = '1.2.7'
10
+ version = '1.2.8'
11
11
  description = 'Reverse enumerate.'
12
12
  urls.Homepage = 'https://pypi.org/project/renumerate/'
13
13
  urls.Documentation = 'https://renumerate.readthedocs.io/'
@@ -45,24 +45,24 @@ classifiers = [
45
45
  requires-python = '>=3.9.0,<4.0.0'
46
46
  dependencies = [
47
47
  # mandatory
48
- 'setuptools>=75.8.0',
49
- 'pkg-about>=1.2.9',
48
+ 'setuptools>=76.0.0',
49
+ 'pkg-about>=1.2.10',
50
50
  # others
51
51
  ]
52
52
  dynamic = ['readme']
53
53
  optional-dependencies.'doc' = [
54
54
  'Sphinx>=7.4.7',
55
55
  'sphinx-autodoc-typehints>=2.3.0',
56
- 'sphinx-toolbox>=3.8.2',
56
+ 'sphinx-toolbox>=3.9.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.0',
60
60
  'sphinx-lint>=1.0.0',
61
61
  'restructuredtext-lint>=1.4.0',
62
- 'nbsphinx>=0.9.6',
62
+ 'nbsphinx>=0.9.7',
63
63
  ]
64
64
  optional-dependencies.'test' = [
65
- 'deepdiff>=8.2.0',
65
+ 'deepdiff>=8.3.0',
66
66
  'rich>=13.9.4',
67
67
  ]
68
68
 
@@ -156,12 +156,12 @@ count = true
156
156
 
157
157
  [tool.tox] # renumerate
158
158
  env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'coverage', 'lint', 'docs']
159
- min_version = '4.24.1'
159
+ min_version = '4.24.2'
160
160
  skip_missing_interpreters = true
161
161
  requires = [
162
162
  {replace='ref',of=['tool','tox','_','base','deps'],extend=true},
163
- 'virtualenv>=20.29.2',
164
- 'tox-backtick>=0.5.8',
163
+ 'virtualenv>=20.29.3',
164
+ 'tox-backtick>=0.5.9',
165
165
  ]
166
166
  [tool.tox.labels]
167
167
  py = ['py39','py310','py311','py312','py313', 'pypy39','pypy310']
@@ -176,7 +176,7 @@ deploy = [{replace='ref',of=['tool','tox','labels','build'],extend=true}, 'publi
176
176
  base_python = ['python3.12']
177
177
  deps = [
178
178
  'pip>=25.0.1',
179
- 'setuptools>=75.8.0',
179
+ 'setuptools>=76.0.0',
180
180
  ]
181
181
  package_subdir = 'renumerate'
182
182
 
@@ -272,7 +272,7 @@ commands = [
272
272
  extras = []
273
273
  deps = [
274
274
  {replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
275
- 'flake8>=7.1.1',
275
+ 'flake8>=7.1.2',
276
276
  'flake8-pyproject>=1.2.3',
277
277
  'flake8-docstrings>=1.7.0',
278
278
  'pep8-naming>=0.14.1',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: renumerate
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: Reverse enumerate.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -33,20 +33,20 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
33
  Requires-Python: <4.0.0,>=3.9.0
34
34
  Description-Content-Type: text/x-rst; charset=UTF-8
35
35
  License-File: LICENSE
36
- Requires-Dist: setuptools>=75.8.0
37
- Requires-Dist: pkg-about>=1.2.9
36
+ Requires-Dist: setuptools>=76.0.0
37
+ Requires-Dist: pkg-about>=1.2.10
38
38
  Provides-Extra: doc
39
39
  Requires-Dist: Sphinx>=7.4.7; extra == "doc"
40
40
  Requires-Dist: sphinx-autodoc-typehints>=2.3.0; extra == "doc"
41
- Requires-Dist: sphinx-toolbox>=3.8.2; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.9.0; extra == "doc"
42
42
  Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
43
  Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
44
  Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
45
45
  Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
46
46
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
47
- Requires-Dist: nbsphinx>=0.9.6; extra == "doc"
47
+ Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
48
48
  Provides-Extra: test
49
- Requires-Dist: deepdiff>=8.2.0; extra == "test"
49
+ Requires-Dist: deepdiff>=8.3.0; extra == "test"
50
50
  Requires-Dist: rich>=13.9.4; extra == "test"
51
51
 
52
52
  renumerate
@@ -177,6 +177,10 @@ Authors
177
177
  Changelog
178
178
  =========
179
179
 
180
+ 1.2.8 (2025-03-15)
181
+ ------------------
182
+ - Setup (dependencies) update.
183
+
180
184
  1.2.7 (2025-02-14)
181
185
  ------------------
182
186
  - Setup (dependencies) update.
@@ -1,17 +1,17 @@
1
- setuptools>=75.8.0
2
- pkg-about>=1.2.9
1
+ setuptools>=76.0.0
2
+ pkg-about>=1.2.10
3
3
 
4
4
  [doc]
5
5
  Sphinx>=7.4.7
6
6
  sphinx-autodoc-typehints>=2.3.0
7
- sphinx-toolbox>=3.8.2
7
+ sphinx-toolbox>=3.9.0
8
8
  sphinx-tabs>=3.4.5
9
9
  sphinx-copybutton>=0.5.2
10
10
  sphinxcontrib-spelling>=8.0.0
11
11
  sphinx-lint>=1.0.0
12
12
  restructuredtext-lint>=1.4.0
13
- nbsphinx>=0.9.6
13
+ nbsphinx>=0.9.7
14
14
 
15
15
  [test]
16
- deepdiff>=8.2.0
16
+ deepdiff>=8.3.0
17
17
  rich>=13.9.4
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