renumerate 1.3.0__tar.gz → 1.3.1__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.

Files changed (27) hide show
  1. {renumerate-1.3.0 → renumerate-1.3.1}/CHANGES.rst +4 -0
  2. {renumerate-1.3.0 → renumerate-1.3.1}/PKG-INFO +8 -5
  3. {renumerate-1.3.0 → renumerate-1.3.1}/pyproject.toml +14 -15
  4. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate.egg-info/PKG-INFO +8 -5
  5. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate.egg-info/requires.txt +2 -2
  6. {renumerate-1.3.0 → renumerate-1.3.1}/.readthedocs.yml +0 -0
  7. {renumerate-1.3.0 → renumerate-1.3.1}/LICENSE +0 -0
  8. {renumerate-1.3.0 → renumerate-1.3.1}/MANIFEST.in +0 -0
  9. {renumerate-1.3.0 → renumerate-1.3.1}/README.rst +0 -0
  10. {renumerate-1.3.0 → renumerate-1.3.1}/docs/CHANGES.rst +0 -0
  11. {renumerate-1.3.0 → renumerate-1.3.1}/docs/README.rst +0 -0
  12. {renumerate-1.3.0 → renumerate-1.3.1}/docs/_static/.keep +0 -0
  13. {renumerate-1.3.0 → renumerate-1.3.1}/docs/_templates/.keep +0 -0
  14. {renumerate-1.3.0 → renumerate-1.3.1}/docs/conf.py +1 -1
  15. {renumerate-1.3.0 → renumerate-1.3.1}/docs/index.rst +0 -0
  16. {renumerate-1.3.0 → renumerate-1.3.1}/setup.cfg +0 -0
  17. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate/__about__.py +0 -0
  18. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate/__init__.py +0 -0
  19. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate/_renumerate.py +0 -0
  20. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate.egg-info/SOURCES.txt +0 -0
  21. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate.egg-info/dependency_links.txt +0 -0
  22. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate.egg-info/top_level.txt +0 -0
  23. {renumerate-1.3.0 → renumerate-1.3.1}/src/renumerate.egg-info/zip-safe +0 -0
  24. {renumerate-1.3.0 → renumerate-1.3.1}/tests/__init__.py +0 -0
  25. {renumerate-1.3.0 → renumerate-1.3.1}/tests/__main__.py +0 -0
  26. {renumerate-1.3.0 → renumerate-1.3.1}/tests/data/.keep +0 -0
  27. {renumerate-1.3.0 → renumerate-1.3.1}/tests/test_main.py +0 -0
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.1 (2025-05-04)
5
+ ------------------
6
+ - Setup (dependencies) update.
7
+
4
8
  1.3.0 (2025-04-28)
5
9
  ------------------
6
10
  - Add support for Python 3.14
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: renumerate
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Reverse enumerate.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
7
7
  Maintainer: Adam Karpierz
8
8
  Maintainer-email: adam@karpierz.net
9
- License: zlib/libpng License ; https://opensource.org/license/zlib
9
+ License-Expression: Zlib
10
10
  Project-URL: Homepage, https://pypi.org/project/renumerate/
11
11
  Project-URL: Documentation, https://renumerate.readthedocs.io/
12
12
  Project-URL: Download, https://pypi.org/project/renumerate/
@@ -16,7 +16,6 @@ Keywords: renumerate,enumerate
16
16
  Platform: any
17
17
  Classifier: Development Status :: 5 - Production/Stable
18
18
  Classifier: Intended Audience :: Developers
19
- Classifier: License :: OSI Approved :: zlib/libpng License
20
19
  Classifier: Operating System :: OS Independent
21
20
  Classifier: Natural Language :: Polish
22
21
  Classifier: Programming Language :: Python
@@ -33,8 +32,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
32
  Requires-Python: <4.0.0,>=3.10.0
34
33
  Description-Content-Type: text/x-rst; charset=UTF-8
35
34
  License-File: LICENSE
36
- Requires-Dist: setuptools>=80.0.0
37
- Requires-Dist: pkg-about>=1.3.0
35
+ Requires-Dist: setuptools>=80.3.1
36
+ Requires-Dist: pkg-about>=1.3.3
38
37
  Provides-Extra: doc
39
38
  Requires-Dist: Sphinx>=8.1.3; extra == "doc"
40
39
  Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
@@ -178,6 +177,10 @@ Authors
178
177
  Changelog
179
178
  =========
180
179
 
180
+ 1.3.1 (2025-05-04)
181
+ ------------------
182
+ - Setup (dependencies) update.
183
+
181
184
  1.3.0 (2025-04-28)
182
185
  ------------------
183
186
  - Add support for Python 3.14
@@ -3,18 +3,12 @@
3
3
 
4
4
  [build-system]
5
5
  build-backend = 'setuptools.build_meta'
6
- requires = ['setuptools>=80.0.0', 'packaging>=25.0.0', 'tox>=4.25.0']
6
+ requires = ['setuptools>=80.3.1', 'packaging>=25.0.0', 'tox>=4.25.0']
7
7
 
8
8
  [project]
9
9
  name = 'renumerate'
10
- version = '1.3.0'
10
+ version = '1.3.1'
11
11
  description = 'Reverse enumerate.'
12
- urls.Homepage = 'https://pypi.org/project/renumerate/'
13
- urls.Documentation = 'https://renumerate.readthedocs.io/'
14
- urls.Download = 'https://pypi.org/project/renumerate/'
15
- urls.Source = 'https://github.com/karpierz/renumerate'
16
- urls.Issues = 'https://github.com/karpierz/renumerate/issues'
17
- license = { text = 'zlib/libpng License ; https://opensource.org/license/zlib' }
18
12
  authors = [
19
13
  { name = 'Adam Karpierz' },
20
14
  { email = 'adam@karpierz.net' },
@@ -23,11 +17,17 @@ maintainers = [
23
17
  { name = 'Adam Karpierz' },
24
18
  { email = 'adam@karpierz.net' },
25
19
  ]
20
+ license = 'Zlib'
21
+ license-files = ['LICENSE']
22
+ urls.Homepage = 'https://pypi.org/project/renumerate/'
23
+ urls.Documentation = 'https://renumerate.readthedocs.io/'
24
+ urls.Download = 'https://pypi.org/project/renumerate/'
25
+ urls.Source = 'https://github.com/karpierz/renumerate'
26
+ urls.Issues = 'https://github.com/karpierz/renumerate/issues'
26
27
  keywords = ['renumerate', 'enumerate']
27
28
  classifiers = [
28
29
  'Development Status :: 5 - Production/Stable',
29
30
  'Intended Audience :: Developers',
30
- 'License :: OSI Approved :: zlib/libpng License',
31
31
  'Operating System :: OS Independent',
32
32
  'Natural Language :: Polish',
33
33
  'Programming Language :: Python',
@@ -45,8 +45,8 @@ classifiers = [
45
45
  requires-python = '>=3.10.0,<4.0.0'
46
46
  dependencies = [
47
47
  # mandatory
48
- 'setuptools>=80.0.0',
49
- 'pkg-about>=1.3.0',
48
+ 'setuptools>=80.3.1',
49
+ 'pkg-about>=1.3.3',
50
50
  # others
51
51
  ]
52
52
  dynamic = ['readme']
@@ -79,7 +79,6 @@ optional-dependencies.'test' = [
79
79
  readme = { file = ['README.rst', 'CHANGES.rst'], content-type = 'text/x-rst; charset=UTF-8' }
80
80
 
81
81
  [tool.setuptools]
82
- license-files = ['LICENSE']
83
82
  include-package-data = true
84
83
  platforms = ['any']
85
84
  zip-safe = true
@@ -161,7 +160,7 @@ skip_missing_interpreters = true
161
160
  requires = [
162
161
  {replace='ref',of=['tool','tox','_','base','deps'],extend=true},
163
162
  'virtualenv>=20.30.0',
164
- 'tox-backtick>=0.6.0',
163
+ 'tox-backtick>=0.6.1',
165
164
  ]
166
165
  [tool.tox.labels]
167
166
  py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
@@ -175,8 +174,8 @@ deploy = [{replace='ref',of=['tool','tox','labels','build'],extend=true}, 'publi
175
174
  [tool.tox._.base]
176
175
  base_python = ['python3.13']
177
176
  deps = [
178
- 'pip>=25.1.0',
179
- 'setuptools>=80.0.0',
177
+ 'pip>=25.1.1',
178
+ 'setuptools>=80.3.1',
180
179
  ]
181
180
  package_subdir = 'renumerate'
182
181
 
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: renumerate
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Reverse enumerate.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
7
7
  Maintainer: Adam Karpierz
8
8
  Maintainer-email: adam@karpierz.net
9
- License: zlib/libpng License ; https://opensource.org/license/zlib
9
+ License-Expression: Zlib
10
10
  Project-URL: Homepage, https://pypi.org/project/renumerate/
11
11
  Project-URL: Documentation, https://renumerate.readthedocs.io/
12
12
  Project-URL: Download, https://pypi.org/project/renumerate/
@@ -16,7 +16,6 @@ Keywords: renumerate,enumerate
16
16
  Platform: any
17
17
  Classifier: Development Status :: 5 - Production/Stable
18
18
  Classifier: Intended Audience :: Developers
19
- Classifier: License :: OSI Approved :: zlib/libpng License
20
19
  Classifier: Operating System :: OS Independent
21
20
  Classifier: Natural Language :: Polish
22
21
  Classifier: Programming Language :: Python
@@ -33,8 +32,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
32
  Requires-Python: <4.0.0,>=3.10.0
34
33
  Description-Content-Type: text/x-rst; charset=UTF-8
35
34
  License-File: LICENSE
36
- Requires-Dist: setuptools>=80.0.0
37
- Requires-Dist: pkg-about>=1.3.0
35
+ Requires-Dist: setuptools>=80.3.1
36
+ Requires-Dist: pkg-about>=1.3.3
38
37
  Provides-Extra: doc
39
38
  Requires-Dist: Sphinx>=8.1.3; extra == "doc"
40
39
  Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
@@ -178,6 +177,10 @@ Authors
178
177
  Changelog
179
178
  =========
180
179
 
180
+ 1.3.1 (2025-05-04)
181
+ ------------------
182
+ - Setup (dependencies) update.
183
+
181
184
  1.3.0 (2025-04-28)
182
185
  ------------------
183
186
  - Add support for Python 3.14
@@ -1,5 +1,5 @@
1
- setuptools>=80.0.0
2
- pkg-about>=1.3.0
1
+ setuptools>=80.3.1
2
+ pkg-about>=1.3.3
3
3
 
4
4
  [doc]
5
5
  Sphinx>=8.1.3
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -23,8 +23,8 @@ def setup(app):
23
23
  # -- Project information -----------------------------------------------------
24
24
 
25
25
  project = about.__title__
26
- copyright = about.__copyright__
27
26
  author = about.__author__
27
+ copyright = about.__copyright__
28
28
 
29
29
  # The full version, including alpha/beta/rc tags
30
30
  release = about.__version__
File without changes
File without changes
File without changes
File without changes
File without changes