renumerate 1.2.10__tar.gz → 1.3.0__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.10 → renumerate-1.3.0}/.readthedocs.yml +1 -1
- {renumerate-1.2.10 → renumerate-1.3.0}/CHANGES.rst +9 -1
- {renumerate-1.2.10 → renumerate-1.3.0}/PKG-INFO +19 -11
- {renumerate-1.2.10 → renumerate-1.3.0}/README.rst +1 -1
- {renumerate-1.2.10 → renumerate-1.3.0}/docs/conf.py +1 -1
- {renumerate-1.2.10 → renumerate-1.3.0}/pyproject.toml +21 -21
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate.egg-info/PKG-INFO +19 -11
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate.egg-info/requires.txt +6 -6
- {renumerate-1.2.10 → renumerate-1.3.0}/LICENSE +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/MANIFEST.in +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/docs/CHANGES.rst +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/docs/README.rst +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/docs/_static/.keep +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/docs/_templates/.keep +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/docs/index.rst +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/setup.cfg +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate/__about__.py +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate/__init__.py +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/tests/__init__.py +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/tests/__main__.py +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/tests/data/.keep +0 -0
- {renumerate-1.2.10 → renumerate-1.3.0}/tests/test_main.py +0 -0
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
1.
|
|
4
|
+
1.3.0 (2025-04-28)
|
|
5
|
+
------------------
|
|
6
|
+
- Add support for Python 3.14
|
|
7
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
8
|
+
- Update readthedocs's python to version 3.13
|
|
9
|
+
- Update tox's base_python to version 3.13
|
|
10
|
+
- Setup (dependencies) update.
|
|
11
|
+
|
|
12
|
+
1.2.11 (2025-03-20)
|
|
5
13
|
-------------------
|
|
6
14
|
- Add support for PyPy 3.11
|
|
7
15
|
- Drop support for PyPy 3.9
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -21,33 +21,33 @@ Classifier: Operating System :: OS Independent
|
|
|
21
21
|
Classifier: Natural Language :: Polish
|
|
22
22
|
Classifier: Programming Language :: Python
|
|
23
23
|
Classifier: Programming Language :: Python :: 3
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
27
|
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
29
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.10.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.
|
|
36
|
+
Requires-Dist: setuptools>=80.0.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.3.0
|
|
38
38
|
Provides-Extra: doc
|
|
39
|
-
Requires-Dist: Sphinx>=
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints>=
|
|
39
|
+
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
41
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
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
44
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.1; 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
47
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
48
48
|
Provides-Extra: test
|
|
49
49
|
Requires-Dist: deepdiff>=8.4.2; extra == "test"
|
|
50
|
-
Requires-Dist: rich>=
|
|
50
|
+
Requires-Dist: rich>=14.0.0; extra == "test"
|
|
51
51
|
Dynamic: license-file
|
|
52
52
|
|
|
53
53
|
renumerate
|
|
@@ -107,7 +107,7 @@ Installation
|
|
|
107
107
|
|
|
108
108
|
Prerequisites:
|
|
109
109
|
|
|
110
|
-
+ Python 3.
|
|
110
|
+
+ Python 3.10 or higher
|
|
111
111
|
|
|
112
112
|
* https://www.python.org/
|
|
113
113
|
|
|
@@ -178,7 +178,15 @@ Authors
|
|
|
178
178
|
Changelog
|
|
179
179
|
=========
|
|
180
180
|
|
|
181
|
-
1.
|
|
181
|
+
1.3.0 (2025-04-28)
|
|
182
|
+
------------------
|
|
183
|
+
- Add support for Python 3.14
|
|
184
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
185
|
+
- Update readthedocs's python to version 3.13
|
|
186
|
+
- Update tox's base_python to version 3.13
|
|
187
|
+
- Setup (dependencies) update.
|
|
188
|
+
|
|
189
|
+
1.2.11 (2025-03-20)
|
|
182
190
|
-------------------
|
|
183
191
|
- Add support for PyPy 3.11
|
|
184
192
|
- Drop support for PyPy 3.9
|
|
@@ -34,7 +34,7 @@ release = about.__version__
|
|
|
34
34
|
|
|
35
35
|
# If your documentation needs a minimal Sphinx version, state it here.
|
|
36
36
|
#
|
|
37
|
-
needs_sphinx = '
|
|
37
|
+
needs_sphinx = '8.1.3'
|
|
38
38
|
|
|
39
39
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
40
40
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=
|
|
6
|
+
requires = ['setuptools>=80.0.0', 'packaging>=25.0.0', 'tox>=4.25.0']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '1.
|
|
10
|
+
version = '1.3.0'
|
|
11
11
|
description = 'Reverse enumerate.'
|
|
12
12
|
urls.Homepage = 'https://pypi.org/project/renumerate/'
|
|
13
13
|
urls.Documentation = 'https://renumerate.readthedocs.io/'
|
|
@@ -32,38 +32,38 @@ classifiers = [
|
|
|
32
32
|
'Natural Language :: Polish',
|
|
33
33
|
'Programming Language :: Python',
|
|
34
34
|
'Programming Language :: Python :: 3',
|
|
35
|
-
'Programming Language :: Python :: 3.9',
|
|
36
35
|
'Programming Language :: Python :: 3.10',
|
|
37
36
|
'Programming Language :: Python :: 3.11',
|
|
38
37
|
'Programming Language :: Python :: 3.12',
|
|
39
38
|
'Programming Language :: Python :: 3.13',
|
|
39
|
+
'Programming Language :: Python :: 3.14',
|
|
40
40
|
'Programming Language :: Python :: 3 :: Only',
|
|
41
41
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
42
42
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
43
43
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
44
44
|
]
|
|
45
|
-
requires-python = '>=3.
|
|
45
|
+
requires-python = '>=3.10.0,<4.0.0'
|
|
46
46
|
dependencies = [
|
|
47
47
|
# mandatory
|
|
48
|
-
'setuptools>=
|
|
49
|
-
'pkg-about>=1.
|
|
48
|
+
'setuptools>=80.0.0',
|
|
49
|
+
'pkg-about>=1.3.0',
|
|
50
50
|
# others
|
|
51
51
|
]
|
|
52
52
|
dynamic = ['readme']
|
|
53
53
|
optional-dependencies.'doc' = [
|
|
54
|
-
'Sphinx>=
|
|
55
|
-
'sphinx-autodoc-typehints>=
|
|
54
|
+
'Sphinx>=8.1.3',
|
|
55
|
+
'sphinx-autodoc-typehints>=3.0.1',
|
|
56
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
|
-
'sphinxcontrib-spelling>=8.0.
|
|
59
|
+
'sphinxcontrib-spelling>=8.0.1',
|
|
60
60
|
'sphinx-lint>=1.0.0',
|
|
61
61
|
'restructuredtext-lint>=1.4.0',
|
|
62
62
|
'nbsphinx>=0.9.7',
|
|
63
63
|
]
|
|
64
64
|
optional-dependencies.'test' = [
|
|
65
65
|
'deepdiff>=8.4.2',
|
|
66
|
-
'rich>=
|
|
66
|
+
'rich>=14.0.0',
|
|
67
67
|
]
|
|
68
68
|
|
|
69
69
|
[project.scripts]
|
|
@@ -154,17 +154,17 @@ count = true
|
|
|
154
154
|
# Configuration(s) for tox
|
|
155
155
|
#
|
|
156
156
|
|
|
157
|
-
[tool.tox]
|
|
157
|
+
[tool.tox]
|
|
158
158
|
env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'coverage', 'lint', 'docs']
|
|
159
|
-
min_version = '4.
|
|
159
|
+
min_version = '4.25.0'
|
|
160
160
|
skip_missing_interpreters = true
|
|
161
161
|
requires = [
|
|
162
162
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
163
|
-
'virtualenv>=20.
|
|
164
|
-
'tox-backtick>=0.
|
|
163
|
+
'virtualenv>=20.30.0',
|
|
164
|
+
'tox-backtick>=0.6.0',
|
|
165
165
|
]
|
|
166
166
|
[tool.tox.labels]
|
|
167
|
-
py = ['
|
|
167
|
+
py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
|
|
168
168
|
prepare = ['prepare']
|
|
169
169
|
coverage = ['coverage']
|
|
170
170
|
lint = ['lint']
|
|
@@ -173,10 +173,10 @@ build = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'docs', '
|
|
|
173
173
|
deploy = [{replace='ref',of=['tool','tox','labels','build'],extend=true}, 'publish']
|
|
174
174
|
|
|
175
175
|
[tool.tox._.base]
|
|
176
|
-
base_python = ['python3.
|
|
176
|
+
base_python = ['python3.13']
|
|
177
177
|
deps = [
|
|
178
|
-
'pip>=25.0
|
|
179
|
-
'setuptools>=
|
|
178
|
+
'pip>=25.1.0',
|
|
179
|
+
'setuptools>=80.0.0',
|
|
180
180
|
]
|
|
181
181
|
package_subdir = 'renumerate'
|
|
182
182
|
|
|
@@ -218,9 +218,9 @@ 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.8.0',
|
|
222
222
|
'covdefaults>=2.3.0',
|
|
223
|
-
'diff-cover>=9.2.
|
|
223
|
+
'diff-cover>=9.2.4',
|
|
224
224
|
]
|
|
225
225
|
|
|
226
226
|
[tool.tox.env.'docs']
|
|
@@ -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.
|
|
275
|
+
'flake8>=7.2.0',
|
|
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.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -21,33 +21,33 @@ Classifier: Operating System :: OS Independent
|
|
|
21
21
|
Classifier: Natural Language :: Polish
|
|
22
22
|
Classifier: Programming Language :: Python
|
|
23
23
|
Classifier: Programming Language :: Python :: 3
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
27
|
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
29
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.10.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.
|
|
36
|
+
Requires-Dist: setuptools>=80.0.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.3.0
|
|
38
38
|
Provides-Extra: doc
|
|
39
|
-
Requires-Dist: Sphinx>=
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints>=
|
|
39
|
+
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
41
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
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
44
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.1; 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
47
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
48
48
|
Provides-Extra: test
|
|
49
49
|
Requires-Dist: deepdiff>=8.4.2; extra == "test"
|
|
50
|
-
Requires-Dist: rich>=
|
|
50
|
+
Requires-Dist: rich>=14.0.0; extra == "test"
|
|
51
51
|
Dynamic: license-file
|
|
52
52
|
|
|
53
53
|
renumerate
|
|
@@ -107,7 +107,7 @@ Installation
|
|
|
107
107
|
|
|
108
108
|
Prerequisites:
|
|
109
109
|
|
|
110
|
-
+ Python 3.
|
|
110
|
+
+ Python 3.10 or higher
|
|
111
111
|
|
|
112
112
|
* https://www.python.org/
|
|
113
113
|
|
|
@@ -178,7 +178,15 @@ Authors
|
|
|
178
178
|
Changelog
|
|
179
179
|
=========
|
|
180
180
|
|
|
181
|
-
1.
|
|
181
|
+
1.3.0 (2025-04-28)
|
|
182
|
+
------------------
|
|
183
|
+
- Add support for Python 3.14
|
|
184
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
185
|
+
- Update readthedocs's python to version 3.13
|
|
186
|
+
- Update tox's base_python to version 3.13
|
|
187
|
+
- Setup (dependencies) update.
|
|
188
|
+
|
|
189
|
+
1.2.11 (2025-03-20)
|
|
182
190
|
-------------------
|
|
183
191
|
- Add support for PyPy 3.11
|
|
184
192
|
- Drop support for PyPy 3.9
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
setuptools>=
|
|
2
|
-
pkg-about>=1.
|
|
1
|
+
setuptools>=80.0.0
|
|
2
|
+
pkg-about>=1.3.0
|
|
3
3
|
|
|
4
4
|
[doc]
|
|
5
|
-
Sphinx>=
|
|
6
|
-
sphinx-autodoc-typehints>=
|
|
5
|
+
Sphinx>=8.1.3
|
|
6
|
+
sphinx-autodoc-typehints>=3.0.1
|
|
7
7
|
sphinx-toolbox>=3.9.0
|
|
8
8
|
sphinx-tabs>=3.4.5
|
|
9
9
|
sphinx-copybutton>=0.5.2
|
|
10
|
-
sphinxcontrib-spelling>=8.0.
|
|
10
|
+
sphinxcontrib-spelling>=8.0.1
|
|
11
11
|
sphinx-lint>=1.0.0
|
|
12
12
|
restructuredtext-lint>=1.4.0
|
|
13
13
|
nbsphinx>=0.9.7
|
|
14
14
|
|
|
15
15
|
[test]
|
|
16
16
|
deepdiff>=8.4.2
|
|
17
|
-
rich>=
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|