renumerate 1.2.4__tar.gz → 1.2.6__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.
- {renumerate-1.2.4 → renumerate-1.2.6}/CHANGES.rst +9 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/LICENSE +1 -1
- {renumerate-1.2.4 → renumerate-1.2.6}/PKG-INFO +17 -7
- {renumerate-1.2.4 → renumerate-1.2.6}/README.rst +1 -1
- {renumerate-1.2.4 → renumerate-1.2.6}/docs/conf.py +1 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/pyproject.toml +15 -14
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate.egg-info/PKG-INFO +17 -7
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate.egg-info/requires.txt +5 -4
- {renumerate-1.2.4 → renumerate-1.2.6}/.readthedocs.yml +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/MANIFEST.in +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/docs/CHANGES.rst +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/docs/README.rst +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/docs/_static/.keep +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/docs/_templates/.keep +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/docs/index.rst +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/setup.cfg +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate/__about__.py +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate/__init__.py +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/tests/__init__.py +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/tests/__main__.py +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/tests/data/.keep +0 -0
- {renumerate-1.2.4 → renumerate-1.2.6}/tests/test_main.py +0 -0
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.2.6 (2025-01-25)
|
|
5
|
+
------------------
|
|
6
|
+
- Setup (dependencies) update.
|
|
7
|
+
|
|
8
|
+
1.2.5 (2025-01-20)
|
|
9
|
+
------------------
|
|
10
|
+
- Copyright year update.
|
|
11
|
+
- Setup (dependencies) update.
|
|
12
|
+
|
|
4
13
|
1.2.4 (2024-12-13)
|
|
5
14
|
------------------
|
|
6
15
|
- Source distribution (\*.tar.gz now) is compliant with PEP-0625.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.6
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -33,19 +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.
|
|
37
|
-
Requires-Dist: pkg-about>=1.2.
|
|
36
|
+
Requires-Dist: setuptools>=75.8.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.8
|
|
38
38
|
Provides-Extra: doc
|
|
39
39
|
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-autodoc-typehints>=2.3.0; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx-toolbox>=3.8.1; extra == "doc"
|
|
41
42
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
42
43
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
44
|
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
44
45
|
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
45
46
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.6; extra == "doc"
|
|
47
48
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=8.
|
|
49
|
+
Requires-Dist: deepdiff>=8.1.1; extra == "test"
|
|
49
50
|
Requires-Dist: rich>=13.9.4; extra == "test"
|
|
50
51
|
|
|
51
52
|
renumerate
|
|
@@ -166,7 +167,7 @@ Authors
|
|
|
166
167
|
|
|
167
168
|
.. |package| replace:: renumerate
|
|
168
169
|
.. |package_bold| replace:: **renumerate**
|
|
169
|
-
.. |copyright| replace:: Copyright (c) 2016-
|
|
170
|
+
.. |copyright| replace:: Copyright (c) 2016-2025 Adam Karpierz
|
|
170
171
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
171
172
|
.. _Development page: https://github.com/karpierz/renumerate
|
|
172
173
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
@@ -176,6 +177,15 @@ Authors
|
|
|
176
177
|
Changelog
|
|
177
178
|
=========
|
|
178
179
|
|
|
180
|
+
1.2.6 (2025-01-25)
|
|
181
|
+
------------------
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.2.5 (2025-01-20)
|
|
185
|
+
------------------
|
|
186
|
+
- Copyright year update.
|
|
187
|
+
- Setup (dependencies) update.
|
|
188
|
+
|
|
179
189
|
1.2.4 (2024-12-13)
|
|
180
190
|
------------------
|
|
181
191
|
- Source distribution (\*.tar.gz now) is compliant with PEP-0625.
|
|
@@ -116,7 +116,7 @@ Authors
|
|
|
116
116
|
|
|
117
117
|
.. |package| replace:: renumerate
|
|
118
118
|
.. |package_bold| replace:: **renumerate**
|
|
119
|
-
.. |copyright| replace:: Copyright (c) 2016-
|
|
119
|
+
.. |copyright| replace:: Copyright (c) 2016-2025 Adam Karpierz
|
|
120
120
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
121
121
|
.. _Development page: https://github.com/karpierz/renumerate
|
|
122
122
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=75.
|
|
6
|
+
requires = ['setuptools>=75.8.0', 'packaging>=24.2.0', 'tox>=4.24.1']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '1.2.
|
|
10
|
+
version = '1.2.6'
|
|
11
11
|
description = 'Reverse enumerate.'
|
|
12
12
|
urls.Homepage = 'https://pypi.org/project/renumerate/'
|
|
13
13
|
urls.Documentation = 'https://renumerate.readthedocs.io/'
|
|
@@ -45,23 +45,24 @@ classifiers = [
|
|
|
45
45
|
requires-python = '>=3.9.0,<4.0.0'
|
|
46
46
|
dependencies = [
|
|
47
47
|
# mandatory
|
|
48
|
-
'setuptools>=75.
|
|
49
|
-
'pkg-about>=1.2.
|
|
48
|
+
'setuptools>=75.8.0',
|
|
49
|
+
'pkg-about>=1.2.8',
|
|
50
50
|
# others
|
|
51
51
|
]
|
|
52
52
|
dynamic = ['readme']
|
|
53
53
|
optional-dependencies.'doc' = [
|
|
54
54
|
'Sphinx>=7.4.7',
|
|
55
|
+
'sphinx-autodoc-typehints>=2.3.0',
|
|
55
56
|
'sphinx-toolbox>=3.8.1',
|
|
56
57
|
'sphinx-tabs>=3.4.5', # don't touch! sphinx-toolbox requires <3.4.7
|
|
57
58
|
'sphinx-copybutton>=0.5.2',
|
|
58
59
|
'sphinxcontrib-spelling>=8.0.0',
|
|
59
60
|
'sphinx-lint>=1.0.0',
|
|
60
61
|
'restructuredtext-lint>=1.4.0',
|
|
61
|
-
'nbsphinx>=0.9.
|
|
62
|
+
'nbsphinx>=0.9.6',
|
|
62
63
|
]
|
|
63
64
|
optional-dependencies.'test' = [
|
|
64
|
-
'deepdiff>=8.
|
|
65
|
+
'deepdiff>=8.1.1',
|
|
65
66
|
'rich>=13.9.4',
|
|
66
67
|
]
|
|
67
68
|
|
|
@@ -155,13 +156,12 @@ count = true
|
|
|
155
156
|
|
|
156
157
|
[tool.tox] # renumerate
|
|
157
158
|
env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'coverage', 'lint', 'docs']
|
|
158
|
-
min_version = '4.
|
|
159
|
+
min_version = '4.24.1'
|
|
159
160
|
skip_missing_interpreters = true
|
|
160
161
|
requires = [
|
|
161
162
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
162
|
-
'virtualenv>=20.
|
|
163
|
-
'tox-backtick>=0.5.
|
|
164
|
-
'tox-tags>=0.2.0',
|
|
163
|
+
'virtualenv>=20.29.1',
|
|
164
|
+
'tox-backtick>=0.5.7',
|
|
165
165
|
]
|
|
166
166
|
[tool.tox.labels]
|
|
167
167
|
py = ['py39','py310','py311','py312','py313', 'pypy39','pypy310']
|
|
@@ -176,11 +176,12 @@ deploy = [{replace='ref',of=['tool','tox','labels','build'],extend=true}, 'publi
|
|
|
176
176
|
base_python = ['python3.12']
|
|
177
177
|
deps = [
|
|
178
178
|
'pip>=24.3.1',
|
|
179
|
-
'setuptools>=75.
|
|
179
|
+
'setuptools>=75.8.0',
|
|
180
180
|
]
|
|
181
181
|
package_subdir = 'renumerate'
|
|
182
182
|
|
|
183
183
|
[tool.tox.env_run_base]
|
|
184
|
+
description = "Run tests under {base_python}"
|
|
184
185
|
set_env.PYTHONDONTWRITEBYTECODE = '1'
|
|
185
186
|
set_env.PKG_PVER = "`python -W ignore -c \"import platform ; print(''.join(platform.python_version_tuple()[:2]), end='')\" 2> nul`"
|
|
186
187
|
set_env.PKG_NAME = "`python -W ignore -c \"import setuptools ; setuptools._distutils.core._setup_stop_after='config' ; print(setuptools.setup().metadata.get_name(), end='')\" 2> nul`"
|
|
@@ -217,7 +218,7 @@ commands = [
|
|
|
217
218
|
]
|
|
218
219
|
deps = [
|
|
219
220
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
220
|
-
'coverage>=7.6.
|
|
221
|
+
'coverage>=7.6.10',
|
|
221
222
|
'covdefaults>=2.3.0',
|
|
222
223
|
'diff-cover>=9.2.0',
|
|
223
224
|
]
|
|
@@ -247,7 +248,7 @@ commands = [
|
|
|
247
248
|
]
|
|
248
249
|
deps = [
|
|
249
250
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
250
|
-
'twine>=6.0
|
|
251
|
+
'twine>=6.1.0',
|
|
251
252
|
]
|
|
252
253
|
|
|
253
254
|
[tool.tox.env.'publish']
|
|
@@ -260,7 +261,7 @@ commands = [
|
|
|
260
261
|
]
|
|
261
262
|
extras = []
|
|
262
263
|
deps = [
|
|
263
|
-
'twine>=6.0
|
|
264
|
+
'twine>=6.1.0',
|
|
264
265
|
]
|
|
265
266
|
|
|
266
267
|
[tool.tox.env.'lint']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.6
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -33,19 +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.
|
|
37
|
-
Requires-Dist: pkg-about>=1.2.
|
|
36
|
+
Requires-Dist: setuptools>=75.8.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.8
|
|
38
38
|
Provides-Extra: doc
|
|
39
39
|
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-autodoc-typehints>=2.3.0; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx-toolbox>=3.8.1; extra == "doc"
|
|
41
42
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
42
43
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
44
|
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
44
45
|
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
45
46
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.6; extra == "doc"
|
|
47
48
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=8.
|
|
49
|
+
Requires-Dist: deepdiff>=8.1.1; extra == "test"
|
|
49
50
|
Requires-Dist: rich>=13.9.4; extra == "test"
|
|
50
51
|
|
|
51
52
|
renumerate
|
|
@@ -166,7 +167,7 @@ Authors
|
|
|
166
167
|
|
|
167
168
|
.. |package| replace:: renumerate
|
|
168
169
|
.. |package_bold| replace:: **renumerate**
|
|
169
|
-
.. |copyright| replace:: Copyright (c) 2016-
|
|
170
|
+
.. |copyright| replace:: Copyright (c) 2016-2025 Adam Karpierz
|
|
170
171
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
171
172
|
.. _Development page: https://github.com/karpierz/renumerate
|
|
172
173
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
@@ -176,6 +177,15 @@ Authors
|
|
|
176
177
|
Changelog
|
|
177
178
|
=========
|
|
178
179
|
|
|
180
|
+
1.2.6 (2025-01-25)
|
|
181
|
+
------------------
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.2.5 (2025-01-20)
|
|
185
|
+
------------------
|
|
186
|
+
- Copyright year update.
|
|
187
|
+
- Setup (dependencies) update.
|
|
188
|
+
|
|
179
189
|
1.2.4 (2024-12-13)
|
|
180
190
|
------------------
|
|
181
191
|
- Source distribution (\*.tar.gz now) is compliant with PEP-0625.
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
setuptools>=75.
|
|
2
|
-
pkg-about>=1.2.
|
|
1
|
+
setuptools>=75.8.0
|
|
2
|
+
pkg-about>=1.2.8
|
|
3
3
|
|
|
4
4
|
[doc]
|
|
5
5
|
Sphinx>=7.4.7
|
|
6
|
+
sphinx-autodoc-typehints>=2.3.0
|
|
6
7
|
sphinx-toolbox>=3.8.1
|
|
7
8
|
sphinx-tabs>=3.4.5
|
|
8
9
|
sphinx-copybutton>=0.5.2
|
|
9
10
|
sphinxcontrib-spelling>=8.0.0
|
|
10
11
|
sphinx-lint>=1.0.0
|
|
11
12
|
restructuredtext-lint>=1.4.0
|
|
12
|
-
nbsphinx>=0.9.
|
|
13
|
+
nbsphinx>=0.9.6
|
|
13
14
|
|
|
14
15
|
[test]
|
|
15
|
-
deepdiff>=8.
|
|
16
|
+
deepdiff>=8.1.1
|
|
16
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|