renumerate 1.4.0__tar.gz → 1.5.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.4.0 → renumerate-1.5.0}/CHANGES.rst +1 -1
- {renumerate-1.4.0 → renumerate-1.5.0}/PKG-INFO +2 -2
- {renumerate-1.4.0 → renumerate-1.5.0}/pyproject.toml +7 -6
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate.egg-info/PKG-INFO +2 -2
- {renumerate-1.4.0 → renumerate-1.5.0}/.readthedocs.yml +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/LICENSE +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/MANIFEST.in +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/README.rst +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/docs/CHANGES.rst +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/docs/README.rst +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/docs/_static/.keep +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/docs/_templates/.keep +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/docs/conf.py +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/docs/index.rst +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/setup.cfg +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate/__about__.py +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate/__init__.py +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate/py.typed +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate.egg-info/requires.txt +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/tests/__init__.py +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/tests/__main__.py +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/tests/data/.keep +0 -0
- {renumerate-1.4.0 → renumerate-1.5.0}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -177,7 +177,7 @@ Authors
|
|
|
177
177
|
Changelog
|
|
178
178
|
=========
|
|
179
179
|
|
|
180
|
-
1.
|
|
180
|
+
1.5.0 (2025-09-01)
|
|
181
181
|
------------------
|
|
182
182
|
- Making the package typed.
|
|
183
183
|
- 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.29.0']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '1.
|
|
10
|
+
version = '1.5.0'
|
|
11
11
|
description = 'Reverse enumerate.'
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = 'Adam Karpierz' },
|
|
@@ -163,7 +163,7 @@ pretty = true
|
|
|
163
163
|
check_untyped_defs = true
|
|
164
164
|
#ignore_missing_imports = true
|
|
165
165
|
files = ['src']
|
|
166
|
-
#exclude = [
|
|
166
|
+
#exclude = ['docs/', 'tests/']
|
|
167
167
|
|
|
168
168
|
#
|
|
169
169
|
# Configuration(s) for tox
|
|
@@ -172,7 +172,7 @@ files = ['src']
|
|
|
172
172
|
[tool.tox]
|
|
173
173
|
env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true},
|
|
174
174
|
'coverage', 'typing', 'lint', 'docs']
|
|
175
|
-
min_version = '4.
|
|
175
|
+
min_version = '4.29.0'
|
|
176
176
|
skip_missing_interpreters = true
|
|
177
177
|
requires = [
|
|
178
178
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
@@ -236,7 +236,7 @@ commands = [
|
|
|
236
236
|
]
|
|
237
237
|
deps = [
|
|
238
238
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
239
|
-
'coverage>=7.10.
|
|
239
|
+
'coverage>=7.10.6',
|
|
240
240
|
'covdefaults>=2.3.0',
|
|
241
241
|
'diff-cover>=9.6.0',
|
|
242
242
|
]
|
|
@@ -290,9 +290,10 @@ commands = [
|
|
|
290
290
|
]
|
|
291
291
|
extras = []
|
|
292
292
|
deps = [
|
|
293
|
+
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
293
294
|
'mypy>=1.17.1',
|
|
294
295
|
'mypy_extensions>=1.1.0',
|
|
295
|
-
'types-setuptools>=80.9.0.
|
|
296
|
+
'types-setuptools>=80.9.0.20250822',
|
|
296
297
|
]
|
|
297
298
|
|
|
298
299
|
[tool.tox.env.'lint']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -177,7 +177,7 @@ Authors
|
|
|
177
177
|
Changelog
|
|
178
178
|
=========
|
|
179
179
|
|
|
180
|
-
1.
|
|
180
|
+
1.5.0 (2025-09-01)
|
|
181
181
|
------------------
|
|
182
182
|
- Making the package typed.
|
|
183
183
|
- 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
|
|
File without changes
|