renumerate 1.4.0__tar.gz → 2.0.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.
- {renumerate-1.4.0 → renumerate-2.0.0}/CHANGES.rst +6 -1
- {renumerate-1.4.0 → renumerate-2.0.0}/PKG-INFO +11 -4
- {renumerate-1.4.0 → renumerate-2.0.0}/pyproject.toml +14 -11
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate.egg-info/PKG-INFO +11 -4
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate.egg-info/requires.txt +3 -2
- {renumerate-1.4.0 → renumerate-2.0.0}/.readthedocs.yml +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/LICENSE +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/MANIFEST.in +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/README.rst +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/docs/CHANGES.rst +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/docs/README.rst +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/docs/_static/.keep +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/docs/_templates/.keep +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/docs/conf.py +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/docs/index.rst +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/setup.cfg +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate/__about__.py +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate/__init__.py +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate/py.typed +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/tests/__init__.py +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/tests/__main__.py +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/tests/data/.keep +0 -0
- {renumerate-1.4.0 → renumerate-2.0.0}/tests/test_main.py +0 -0
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
2.0.0 (2025-09-08)
|
|
5
|
+
------------------
|
|
6
|
+
- Mark the package as typed.
|
|
7
|
+
- Setup (dependencies) update.
|
|
8
|
+
|
|
9
|
+
1.5.0 (2025-09-01)
|
|
5
10
|
------------------
|
|
6
11
|
- Making the package typed.
|
|
7
12
|
- Setup (dependencies) update.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -29,11 +29,13 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
29
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
31
31
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
|
+
Classifier: Typing :: Typed
|
|
32
33
|
Requires-Python: <4.0.0,>=3.10.0
|
|
33
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
35
|
License-File: LICENSE
|
|
35
36
|
Requires-Dist: setuptools>=80.9.0
|
|
36
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
38
|
+
Requires-Dist: pkg-about>=2.0.0
|
|
37
39
|
Provides-Extra: doc
|
|
38
40
|
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
41
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
@@ -45,7 +47,7 @@ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
|
45
47
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
48
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
47
49
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=8.6.
|
|
50
|
+
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
51
|
Requires-Dist: rich>=14.1.0; extra == "test"
|
|
50
52
|
Dynamic: license-file
|
|
51
53
|
|
|
@@ -177,7 +179,12 @@ Authors
|
|
|
177
179
|
Changelog
|
|
178
180
|
=========
|
|
179
181
|
|
|
180
|
-
|
|
182
|
+
2.0.0 (2025-09-08)
|
|
183
|
+
------------------
|
|
184
|
+
- Mark the package as typed.
|
|
185
|
+
- Setup (dependencies) update.
|
|
186
|
+
|
|
187
|
+
1.5.0 (2025-09-01)
|
|
181
188
|
------------------
|
|
182
189
|
- Making the package typed.
|
|
183
190
|
- Setup (dependencies) update.
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.
|
|
6
|
+
requires = ['setuptools>=80.9.0', 'packaging>=25.0.0', 'tox>=4.30.2']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '
|
|
10
|
+
version = '2.0.0'
|
|
11
11
|
description = 'Reverse enumerate.'
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz' },
|
|
@@ -41,12 +41,14 @@ classifiers = [
|
|
|
41
41
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
42
42
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
43
43
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
44
|
+
'Typing :: Typed',
|
|
44
45
|
]
|
|
45
46
|
requires-python = '>=3.10.0,<4.0.0'
|
|
46
47
|
dependencies = [
|
|
47
48
|
# mandatory
|
|
48
49
|
'setuptools>=80.9.0',
|
|
49
|
-
'
|
|
50
|
+
'typing_extensions>=4.15.0',
|
|
51
|
+
'pkg-about>=2.0.0',
|
|
50
52
|
# others
|
|
51
53
|
]
|
|
52
54
|
dynamic = ['readme']
|
|
@@ -62,7 +64,7 @@ optional-dependencies.'doc' = [
|
|
|
62
64
|
'nbsphinx>=0.9.7',
|
|
63
65
|
]
|
|
64
66
|
optional-dependencies.'test' = [
|
|
65
|
-
'deepdiff>=8.6.
|
|
67
|
+
'deepdiff>=8.6.1',
|
|
66
68
|
'rich>=14.1.0',
|
|
67
69
|
]
|
|
68
70
|
|
|
@@ -163,7 +165,7 @@ pretty = true
|
|
|
163
165
|
check_untyped_defs = true
|
|
164
166
|
#ignore_missing_imports = true
|
|
165
167
|
files = ['src']
|
|
166
|
-
#exclude = [
|
|
168
|
+
#exclude = ['docs/', 'tests/']
|
|
167
169
|
|
|
168
170
|
#
|
|
169
171
|
# Configuration(s) for tox
|
|
@@ -172,12 +174,12 @@ files = ['src']
|
|
|
172
174
|
[tool.tox]
|
|
173
175
|
env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true},
|
|
174
176
|
'coverage', 'typing', 'lint', 'docs']
|
|
175
|
-
min_version = '4.28.4'
|
|
176
177
|
skip_missing_interpreters = true
|
|
177
178
|
requires = [
|
|
178
179
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
180
|
+
'tox>=4.30.2',
|
|
179
181
|
'virtualenv>=20.34.0',
|
|
180
|
-
'tox-backtick>=0.
|
|
182
|
+
'tox-backtick>=1.0.0',
|
|
181
183
|
]
|
|
182
184
|
[tool.tox.labels]
|
|
183
185
|
py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
|
|
@@ -236,7 +238,7 @@ commands = [
|
|
|
236
238
|
]
|
|
237
239
|
deps = [
|
|
238
240
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
239
|
-
'coverage>=7.10.
|
|
241
|
+
'coverage>=7.10.6',
|
|
240
242
|
'covdefaults>=2.3.0',
|
|
241
243
|
'diff-cover>=9.6.0',
|
|
242
244
|
]
|
|
@@ -266,7 +268,7 @@ commands = [
|
|
|
266
268
|
deps = [
|
|
267
269
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
268
270
|
'build>=1.3.0',
|
|
269
|
-
'twine>=6.
|
|
271
|
+
'twine>=6.2.0',
|
|
270
272
|
]
|
|
271
273
|
|
|
272
274
|
[tool.tox.env.'publish']
|
|
@@ -279,7 +281,7 @@ commands = [
|
|
|
279
281
|
]
|
|
280
282
|
extras = []
|
|
281
283
|
deps = [
|
|
282
|
-
'twine>=6.
|
|
284
|
+
'twine>=6.2.0',
|
|
283
285
|
]
|
|
284
286
|
|
|
285
287
|
[tool.tox.env.'typing']
|
|
@@ -290,9 +292,10 @@ commands = [
|
|
|
290
292
|
]
|
|
291
293
|
extras = []
|
|
292
294
|
deps = [
|
|
295
|
+
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
293
296
|
'mypy>=1.17.1',
|
|
294
297
|
'mypy_extensions>=1.1.0',
|
|
295
|
-
'types-setuptools>=80.9.0.
|
|
298
|
+
'types-setuptools>=80.9.0.20250822',
|
|
296
299
|
]
|
|
297
300
|
|
|
298
301
|
[tool.tox.env.'lint']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -29,11 +29,13 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
29
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
31
31
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
|
+
Classifier: Typing :: Typed
|
|
32
33
|
Requires-Python: <4.0.0,>=3.10.0
|
|
33
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
35
|
License-File: LICENSE
|
|
35
36
|
Requires-Dist: setuptools>=80.9.0
|
|
36
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
38
|
+
Requires-Dist: pkg-about>=2.0.0
|
|
37
39
|
Provides-Extra: doc
|
|
38
40
|
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
41
|
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
@@ -45,7 +47,7 @@ Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
|
45
47
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
48
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
47
49
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=8.6.
|
|
50
|
+
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
49
51
|
Requires-Dist: rich>=14.1.0; extra == "test"
|
|
50
52
|
Dynamic: license-file
|
|
51
53
|
|
|
@@ -177,7 +179,12 @@ Authors
|
|
|
177
179
|
Changelog
|
|
178
180
|
=========
|
|
179
181
|
|
|
180
|
-
|
|
182
|
+
2.0.0 (2025-09-08)
|
|
183
|
+
------------------
|
|
184
|
+
- Mark the package as typed.
|
|
185
|
+
- Setup (dependencies) update.
|
|
186
|
+
|
|
187
|
+
1.5.0 (2025-09-01)
|
|
181
188
|
------------------
|
|
182
189
|
- Making the package typed.
|
|
183
190
|
- Setup (dependencies) update.
|
|
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
|
|
File without changes
|