renumerate 1.2.7__tar.gz → 1.2.9__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.7 → renumerate-1.2.9}/CHANGES.rst +10 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/PKG-INFO +18 -7
- {renumerate-1.2.7 → renumerate-1.2.9}/pyproject.toml +14 -14
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate.egg-info/PKG-INFO +18 -7
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate.egg-info/requires.txt +5 -5
- {renumerate-1.2.7 → renumerate-1.2.9}/.readthedocs.yml +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/LICENSE +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/MANIFEST.in +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/README.rst +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/docs/CHANGES.rst +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/docs/README.rst +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/docs/_static/.keep +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/docs/_templates/.keep +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/docs/conf.py +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/docs/index.rst +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/setup.cfg +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate/__about__.py +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate/__init__.py +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/tests/__init__.py +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/tests/__main__.py +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/tests/data/.keep +0 -0
- {renumerate-1.2.7 → renumerate-1.2.9}/tests/test_main.py +0 -0
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.2.9 (2025-03-20)
|
|
5
|
+
------------------
|
|
6
|
+
- Add support for PyPy 3.11
|
|
7
|
+
- Drop support for PyPy 3.9
|
|
8
|
+
- Setup (dependencies) update.
|
|
9
|
+
|
|
10
|
+
1.2.8 (2025-03-15)
|
|
11
|
+
------------------
|
|
12
|
+
- Setup (dependencies) update.
|
|
13
|
+
|
|
4
14
|
1.2.7 (2025-02-14)
|
|
5
15
|
------------------
|
|
6
16
|
- Setup (dependencies) update.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.9
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -33,21 +33,22 @@ 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>=
|
|
37
|
-
Requires-Dist: pkg-about>=1.2.
|
|
36
|
+
Requires-Dist: setuptools>=77.0.3
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.11
|
|
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.
|
|
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.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
48
48
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: deepdiff>=8.2
|
|
49
|
+
Requires-Dist: deepdiff>=8.4.2; extra == "test"
|
|
50
50
|
Requires-Dist: rich>=13.9.4; extra == "test"
|
|
51
|
+
Dynamic: license-file
|
|
51
52
|
|
|
52
53
|
renumerate
|
|
53
54
|
==========
|
|
@@ -177,6 +178,16 @@ Authors
|
|
|
177
178
|
Changelog
|
|
178
179
|
=========
|
|
179
180
|
|
|
181
|
+
1.2.9 (2025-03-20)
|
|
182
|
+
------------------
|
|
183
|
+
- Add support for PyPy 3.11
|
|
184
|
+
- Drop support for PyPy 3.9
|
|
185
|
+
- Setup (dependencies) update.
|
|
186
|
+
|
|
187
|
+
1.2.8 (2025-03-15)
|
|
188
|
+
------------------
|
|
189
|
+
- Setup (dependencies) update.
|
|
190
|
+
|
|
180
191
|
1.2.7 (2025-02-14)
|
|
181
192
|
------------------
|
|
182
193
|
- Setup (dependencies) update.
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=
|
|
6
|
+
requires = ['setuptools>=77.0.3', 'packaging>=24.2.0', 'tox>=4.24.2']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '1.2.
|
|
10
|
+
version = '1.2.9'
|
|
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>=
|
|
49
|
-
'pkg-about>=1.2.
|
|
48
|
+
'setuptools>=77.0.3',
|
|
49
|
+
'pkg-about>=1.2.11',
|
|
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.
|
|
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.
|
|
62
|
+
'nbsphinx>=0.9.7',
|
|
63
63
|
]
|
|
64
64
|
optional-dependencies.'test' = [
|
|
65
|
-
'deepdiff>=8.2
|
|
65
|
+
'deepdiff>=8.4.2',
|
|
66
66
|
'rich>=13.9.4',
|
|
67
67
|
]
|
|
68
68
|
|
|
@@ -156,15 +156,15 @@ 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.
|
|
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.
|
|
164
|
-
'tox-backtick>=0.5.
|
|
163
|
+
'virtualenv>=20.29.3',
|
|
164
|
+
'tox-backtick>=0.5.10',
|
|
165
165
|
]
|
|
166
166
|
[tool.tox.labels]
|
|
167
|
-
py = ['py39','py310','py311','py312','py313', '
|
|
167
|
+
py = ['py39','py310','py311','py312','py313', 'pypy310','pypy311']
|
|
168
168
|
prepare = ['prepare']
|
|
169
169
|
coverage = ['coverage']
|
|
170
170
|
lint = ['lint']
|
|
@@ -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>=
|
|
179
|
+
'setuptools>=77.0.3',
|
|
180
180
|
]
|
|
181
181
|
package_subdir = 'renumerate'
|
|
182
182
|
|
|
@@ -218,7 +218,7 @@ commands = [
|
|
|
218
218
|
]
|
|
219
219
|
deps = [
|
|
220
220
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
221
|
-
'coverage>=7.
|
|
221
|
+
'coverage>=7.7.0',
|
|
222
222
|
'covdefaults>=2.3.0',
|
|
223
223
|
'diff-cover>=9.2.0',
|
|
224
224
|
]
|
|
@@ -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.
|
|
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
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.9
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -33,21 +33,22 @@ 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>=
|
|
37
|
-
Requires-Dist: pkg-about>=1.2.
|
|
36
|
+
Requires-Dist: setuptools>=77.0.3
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.11
|
|
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.
|
|
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.
|
|
47
|
+
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
48
48
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: deepdiff>=8.2
|
|
49
|
+
Requires-Dist: deepdiff>=8.4.2; extra == "test"
|
|
50
50
|
Requires-Dist: rich>=13.9.4; extra == "test"
|
|
51
|
+
Dynamic: license-file
|
|
51
52
|
|
|
52
53
|
renumerate
|
|
53
54
|
==========
|
|
@@ -177,6 +178,16 @@ Authors
|
|
|
177
178
|
Changelog
|
|
178
179
|
=========
|
|
179
180
|
|
|
181
|
+
1.2.9 (2025-03-20)
|
|
182
|
+
------------------
|
|
183
|
+
- Add support for PyPy 3.11
|
|
184
|
+
- Drop support for PyPy 3.9
|
|
185
|
+
- Setup (dependencies) update.
|
|
186
|
+
|
|
187
|
+
1.2.8 (2025-03-15)
|
|
188
|
+
------------------
|
|
189
|
+
- Setup (dependencies) update.
|
|
190
|
+
|
|
180
191
|
1.2.7 (2025-02-14)
|
|
181
192
|
------------------
|
|
182
193
|
- Setup (dependencies) update.
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
setuptools>=
|
|
2
|
-
pkg-about>=1.2.
|
|
1
|
+
setuptools>=77.0.3
|
|
2
|
+
pkg-about>=1.2.11
|
|
3
3
|
|
|
4
4
|
[doc]
|
|
5
5
|
Sphinx>=7.4.7
|
|
6
6
|
sphinx-autodoc-typehints>=2.3.0
|
|
7
|
-
sphinx-toolbox>=3.
|
|
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.
|
|
13
|
+
nbsphinx>=0.9.7
|
|
14
14
|
|
|
15
15
|
[test]
|
|
16
|
-
deepdiff>=8.2
|
|
16
|
+
deepdiff>=8.4.2
|
|
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
|
|
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
|