renumerate 1.2.0__zip → 1.2.1__zip
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.0 → renumerate-1.2.1}/CHANGES.rst +4 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/PKG-INFO +8 -4
- {renumerate-1.2.0 → renumerate-1.2.1}/pyproject.toml +8 -8
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate.egg-info/PKG-INFO +8 -4
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate.egg-info/requires.txt +3 -3
- {renumerate-1.2.0 → renumerate-1.2.1}/.readthedocs.yml +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/LICENSE +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/MANIFEST.in +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/README.rst +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/docs/CHANGES.rst +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/docs/README.rst +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/docs/_static/.keep +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/docs/_templates/.keep +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/docs/conf.py +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/docs/index.rst +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/setup.cfg +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate/__about__.py +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate/__init__.py +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/tests/__init__.py +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/tests/__main__.py +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/tests/data/.keep +0 -0
- {renumerate-1.2.0 → renumerate-1.2.1}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -34,11 +34,11 @@ 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
36
|
Requires-Dist: setuptools>=75.1.0
|
|
37
|
-
Requires-Dist: pkg-about>=1.2.
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.1
|
|
38
38
|
Provides-Extra: doc
|
|
39
39
|
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
40
|
Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
|
|
41
|
-
Requires-Dist: sphinx-tabs>=3.4.
|
|
41
|
+
Requires-Dist: sphinx-tabs>=3.4.7; extra == "doc"
|
|
42
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
43
|
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
44
44
|
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
@@ -46,7 +46,7 @@ Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
|
46
46
|
Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: deepdiff>=8.0.1; extra == "test"
|
|
49
|
-
Requires-Dist: rich>=13.
|
|
49
|
+
Requires-Dist: rich>=13.9.2; extra == "test"
|
|
50
50
|
|
|
51
51
|
renumerate
|
|
52
52
|
==========
|
|
@@ -176,6 +176,10 @@ Authors
|
|
|
176
176
|
Changelog
|
|
177
177
|
=========
|
|
178
178
|
|
|
179
|
+
1.2.1 (2024-10-09)
|
|
180
|
+
------------------
|
|
181
|
+
- Setup (dependencies) update.
|
|
182
|
+
|
|
179
183
|
1.2.0 (2024-09-30)
|
|
180
184
|
------------------
|
|
181
185
|
- Drop support for Python 3.8
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=75.1.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.
|
|
6
|
+
requires = ['setuptools>=75.1.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.21.2']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '1.2.
|
|
10
|
+
version = '1.2.1'
|
|
11
11
|
description = 'Reverse enumerate.'
|
|
12
12
|
urls.Homepage = 'https://pypi.org/project/renumerate/'
|
|
13
13
|
urls.Documentation = 'https://renumerate.readthedocs.io/'
|
|
@@ -46,7 +46,7 @@ requires-python = '>=3.9.0,<4.0.0'
|
|
|
46
46
|
dependencies = [
|
|
47
47
|
# mandatory
|
|
48
48
|
'setuptools>=75.1.0',
|
|
49
|
-
'pkg-about>=1.2.
|
|
49
|
+
'pkg-about>=1.2.1',
|
|
50
50
|
# others
|
|
51
51
|
]
|
|
52
52
|
dynamic = ['readme']
|
|
@@ -54,7 +54,7 @@ dynamic = ['readme']
|
|
|
54
54
|
doc = [
|
|
55
55
|
'Sphinx>=7.4.7',
|
|
56
56
|
'sphinx-toolbox>=3.8.0',
|
|
57
|
-
'sphinx-tabs>=3.4.
|
|
57
|
+
'sphinx-tabs>=3.4.7',
|
|
58
58
|
'sphinx-copybutton>=0.5.2',
|
|
59
59
|
'sphinxcontrib-spelling>=8.0.0',
|
|
60
60
|
'sphinx-lint>=1.0.0',
|
|
@@ -63,7 +63,7 @@ doc = [
|
|
|
63
63
|
]
|
|
64
64
|
test = [
|
|
65
65
|
'deepdiff>=8.0.1',
|
|
66
|
-
'rich>=13.
|
|
66
|
+
'rich>=13.9.2',
|
|
67
67
|
]
|
|
68
68
|
|
|
69
69
|
[project.scripts]
|
|
@@ -166,12 +166,12 @@ labels =
|
|
|
166
166
|
docs = docs
|
|
167
167
|
build = py{39,310,311,312,313}, pypy{39,310}, docs, build
|
|
168
168
|
deploy = py{39,310,311,312,313}, pypy{39,310}, docs, build, publish
|
|
169
|
-
minversion = 4.
|
|
169
|
+
minversion = 4.21.2
|
|
170
170
|
skip_missing_interpreters = true
|
|
171
171
|
requires =
|
|
172
172
|
{[base]deps}
|
|
173
173
|
virtualenv>=20.26.6
|
|
174
|
-
tox-backtick>=0.5.
|
|
174
|
+
tox-backtick>=0.5.1
|
|
175
175
|
tox-tags>=0.2.0
|
|
176
176
|
|
|
177
177
|
[base]
|
|
@@ -211,7 +211,7 @@ commands =
|
|
|
211
211
|
{envpython} -m coverage html
|
|
212
212
|
deps =
|
|
213
213
|
{[testenv]deps}
|
|
214
|
-
coverage>=7.6.
|
|
214
|
+
coverage>=7.6.2
|
|
215
215
|
covdefaults>=2.3.0
|
|
216
216
|
diff-cover>=9.2.0
|
|
217
217
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -34,11 +34,11 @@ 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
36
|
Requires-Dist: setuptools>=75.1.0
|
|
37
|
-
Requires-Dist: pkg-about>=1.2.
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.1
|
|
38
38
|
Provides-Extra: doc
|
|
39
39
|
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
40
|
Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
|
|
41
|
-
Requires-Dist: sphinx-tabs>=3.4.
|
|
41
|
+
Requires-Dist: sphinx-tabs>=3.4.7; extra == "doc"
|
|
42
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
43
43
|
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
44
44
|
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
@@ -46,7 +46,7 @@ Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
|
46
46
|
Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: deepdiff>=8.0.1; extra == "test"
|
|
49
|
-
Requires-Dist: rich>=13.
|
|
49
|
+
Requires-Dist: rich>=13.9.2; extra == "test"
|
|
50
50
|
|
|
51
51
|
renumerate
|
|
52
52
|
==========
|
|
@@ -176,6 +176,10 @@ Authors
|
|
|
176
176
|
Changelog
|
|
177
177
|
=========
|
|
178
178
|
|
|
179
|
+
1.2.1 (2024-10-09)
|
|
180
|
+
------------------
|
|
181
|
+
- Setup (dependencies) update.
|
|
182
|
+
|
|
179
183
|
1.2.0 (2024-09-30)
|
|
180
184
|
------------------
|
|
181
185
|
- Drop support for Python 3.8
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
setuptools>=75.1.0
|
|
2
|
-
pkg-about>=1.2.
|
|
2
|
+
pkg-about>=1.2.1
|
|
3
3
|
|
|
4
4
|
[doc]
|
|
5
5
|
Sphinx>=7.4.7
|
|
6
6
|
sphinx-toolbox>=3.8.0
|
|
7
|
-
sphinx-tabs>=3.4.
|
|
7
|
+
sphinx-tabs>=3.4.7
|
|
8
8
|
sphinx-copybutton>=0.5.2
|
|
9
9
|
sphinxcontrib-spelling>=8.0.0
|
|
10
10
|
sphinx-lint>=1.0.0
|
|
@@ -13,4 +13,4 @@ nbsphinx>=0.9.5
|
|
|
13
13
|
|
|
14
14
|
[test]
|
|
15
15
|
deepdiff>=8.0.1
|
|
16
|
-
rich>=13.
|
|
16
|
+
rich>=13.9.2
|
|
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
|