renumerate 1.2.11__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.
- {renumerate-1.2.11 → renumerate-1.3.1}/.readthedocs.yml +1 -1
- {renumerate-1.2.11 → renumerate-1.3.1}/CHANGES.rst +12 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/PKG-INFO +23 -12
- {renumerate-1.2.11 → renumerate-1.3.1}/README.rst +1 -1
- {renumerate-1.2.11 → renumerate-1.3.1}/docs/conf.py +2 -2
- {renumerate-1.2.11 → renumerate-1.3.1}/pyproject.toml +28 -29
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate.egg-info/PKG-INFO +23 -12
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate.egg-info/requires.txt +6 -6
- {renumerate-1.2.11 → renumerate-1.3.1}/LICENSE +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/MANIFEST.in +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/docs/CHANGES.rst +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/docs/README.rst +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/docs/_static/.keep +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/docs/_templates/.keep +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/docs/index.rst +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/setup.cfg +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate/__about__.py +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate/__init__.py +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/tests/__init__.py +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/tests/__main__.py +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/tests/data/.keep +0 -0
- {renumerate-1.2.11 → renumerate-1.3.1}/tests/test_main.py +0 -0
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.3.1 (2025-05-04)
|
|
5
|
+
------------------
|
|
6
|
+
- Setup (dependencies) update.
|
|
7
|
+
|
|
8
|
+
1.3.0 (2025-04-28)
|
|
9
|
+
------------------
|
|
10
|
+
- Add support for Python 3.14
|
|
11
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
12
|
+
- Update readthedocs's python to version 3.13
|
|
13
|
+
- Update tox's base_python to version 3.13
|
|
14
|
+
- Setup (dependencies) update.
|
|
15
|
+
|
|
4
16
|
1.2.11 (2025-03-20)
|
|
5
17
|
-------------------
|
|
6
18
|
- Add support for PyPy 3.11
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
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:
|
|
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,38 +16,37 @@ 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
|
|
23
22
|
Classifier: Programming Language :: Python :: 3
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
25
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
26
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
28
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
30
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
31
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.
|
|
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>=
|
|
37
|
-
Requires-Dist: pkg-about>=1.
|
|
35
|
+
Requires-Dist: setuptools>=80.3.1
|
|
36
|
+
Requires-Dist: pkg-about>=1.3.3
|
|
38
37
|
Provides-Extra: doc
|
|
39
|
-
Requires-Dist: Sphinx>=
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints>=
|
|
38
|
+
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
|
+
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
41
40
|
Requires-Dist: sphinx-toolbox>=3.9.0; extra == "doc"
|
|
42
41
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
43
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
43
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.1; extra == "doc"
|
|
45
44
|
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
46
45
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
47
46
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
48
47
|
Provides-Extra: test
|
|
49
48
|
Requires-Dist: deepdiff>=8.4.2; extra == "test"
|
|
50
|
-
Requires-Dist: rich>=
|
|
49
|
+
Requires-Dist: rich>=14.0.0; extra == "test"
|
|
51
50
|
Dynamic: license-file
|
|
52
51
|
|
|
53
52
|
renumerate
|
|
@@ -107,7 +106,7 @@ Installation
|
|
|
107
106
|
|
|
108
107
|
Prerequisites:
|
|
109
108
|
|
|
110
|
-
+ Python 3.
|
|
109
|
+
+ Python 3.10 or higher
|
|
111
110
|
|
|
112
111
|
* https://www.python.org/
|
|
113
112
|
|
|
@@ -178,6 +177,18 @@ Authors
|
|
|
178
177
|
Changelog
|
|
179
178
|
=========
|
|
180
179
|
|
|
180
|
+
1.3.1 (2025-05-04)
|
|
181
|
+
------------------
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.3.0 (2025-04-28)
|
|
185
|
+
------------------
|
|
186
|
+
- Add support for Python 3.14
|
|
187
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
188
|
+
- Update readthedocs's python to version 3.13
|
|
189
|
+
- Update tox's base_python to version 3.13
|
|
190
|
+
- Setup (dependencies) update.
|
|
191
|
+
|
|
181
192
|
1.2.11 (2025-03-20)
|
|
182
193
|
-------------------
|
|
183
194
|
- Add support for PyPy 3.11
|
|
@@ -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__
|
|
@@ -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,18 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=
|
|
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.
|
|
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,47 +17,53 @@ 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',
|
|
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.3.1',
|
|
49
|
+
'pkg-about>=1.3.3',
|
|
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]
|
|
@@ -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
|
|
@@ -154,17 +153,17 @@ count = true
|
|
|
154
153
|
# Configuration(s) for tox
|
|
155
154
|
#
|
|
156
155
|
|
|
157
|
-
[tool.tox]
|
|
156
|
+
[tool.tox]
|
|
158
157
|
env_list = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'coverage', 'lint', 'docs']
|
|
159
|
-
min_version = '4.
|
|
158
|
+
min_version = '4.25.0'
|
|
160
159
|
skip_missing_interpreters = true
|
|
161
160
|
requires = [
|
|
162
161
|
{replace='ref',of=['tool','tox','_','base','deps'],extend=true},
|
|
163
|
-
'virtualenv>=20.
|
|
164
|
-
'tox-backtick>=0.
|
|
162
|
+
'virtualenv>=20.30.0',
|
|
163
|
+
'tox-backtick>=0.6.1',
|
|
165
164
|
]
|
|
166
165
|
[tool.tox.labels]
|
|
167
|
-
py = ['
|
|
166
|
+
py = ['py310','py311','py312','py313','py314', 'pypy310','pypy311']
|
|
168
167
|
prepare = ['prepare']
|
|
169
168
|
coverage = ['coverage']
|
|
170
169
|
lint = ['lint']
|
|
@@ -173,10 +172,10 @@ build = [{replace='ref',of=['tool','tox','labels','py'],extend=true}, 'docs', '
|
|
|
173
172
|
deploy = [{replace='ref',of=['tool','tox','labels','build'],extend=true}, 'publish']
|
|
174
173
|
|
|
175
174
|
[tool.tox._.base]
|
|
176
|
-
base_python = ['python3.
|
|
175
|
+
base_python = ['python3.13']
|
|
177
176
|
deps = [
|
|
178
|
-
'pip>=25.
|
|
179
|
-
'setuptools>=
|
|
177
|
+
'pip>=25.1.1',
|
|
178
|
+
'setuptools>=80.3.1',
|
|
180
179
|
]
|
|
181
180
|
package_subdir = 'renumerate'
|
|
182
181
|
|
|
@@ -218,9 +217,9 @@ commands = [
|
|
|
218
217
|
]
|
|
219
218
|
deps = [
|
|
220
219
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
221
|
-
'coverage>=7.
|
|
220
|
+
'coverage>=7.8.0',
|
|
222
221
|
'covdefaults>=2.3.0',
|
|
223
|
-
'diff-cover>=9.2.
|
|
222
|
+
'diff-cover>=9.2.4',
|
|
224
223
|
]
|
|
225
224
|
|
|
226
225
|
[tool.tox.env.'docs']
|
|
@@ -272,7 +271,7 @@ commands = [
|
|
|
272
271
|
extras = []
|
|
273
272
|
deps = [
|
|
274
273
|
{replace='ref',of=['tool','tox','env_run_base','deps'],extend=true},
|
|
275
|
-
'flake8>=7.
|
|
274
|
+
'flake8>=7.2.0',
|
|
276
275
|
'flake8-pyproject>=1.2.3',
|
|
277
276
|
'flake8-docstrings>=1.7.0',
|
|
278
277
|
'pep8-naming>=0.14.1',
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
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:
|
|
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,38 +16,37 @@ 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
|
|
23
22
|
Classifier: Programming Language :: Python :: 3
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
25
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
26
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
28
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
30
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
31
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.
|
|
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>=
|
|
37
|
-
Requires-Dist: pkg-about>=1.
|
|
35
|
+
Requires-Dist: setuptools>=80.3.1
|
|
36
|
+
Requires-Dist: pkg-about>=1.3.3
|
|
38
37
|
Provides-Extra: doc
|
|
39
|
-
Requires-Dist: Sphinx>=
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints>=
|
|
38
|
+
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
39
|
+
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
41
40
|
Requires-Dist: sphinx-toolbox>=3.9.0; extra == "doc"
|
|
42
41
|
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
43
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinxcontrib-spelling>=8.0.
|
|
43
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.1; extra == "doc"
|
|
45
44
|
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
46
45
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
47
46
|
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
48
47
|
Provides-Extra: test
|
|
49
48
|
Requires-Dist: deepdiff>=8.4.2; extra == "test"
|
|
50
|
-
Requires-Dist: rich>=
|
|
49
|
+
Requires-Dist: rich>=14.0.0; extra == "test"
|
|
51
50
|
Dynamic: license-file
|
|
52
51
|
|
|
53
52
|
renumerate
|
|
@@ -107,7 +106,7 @@ Installation
|
|
|
107
106
|
|
|
108
107
|
Prerequisites:
|
|
109
108
|
|
|
110
|
-
+ Python 3.
|
|
109
|
+
+ Python 3.10 or higher
|
|
111
110
|
|
|
112
111
|
* https://www.python.org/
|
|
113
112
|
|
|
@@ -178,6 +177,18 @@ Authors
|
|
|
178
177
|
Changelog
|
|
179
178
|
=========
|
|
180
179
|
|
|
180
|
+
1.3.1 (2025-05-04)
|
|
181
|
+
------------------
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.3.0 (2025-04-28)
|
|
185
|
+
------------------
|
|
186
|
+
- Add support for Python 3.14
|
|
187
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
188
|
+
- Update readthedocs's python to version 3.13
|
|
189
|
+
- Update tox's base_python to version 3.13
|
|
190
|
+
- Setup (dependencies) update.
|
|
191
|
+
|
|
181
192
|
1.2.11 (2025-03-20)
|
|
182
193
|
-------------------
|
|
183
194
|
- Add support for PyPy 3.11
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
setuptools>=
|
|
2
|
-
pkg-about>=1.
|
|
1
|
+
setuptools>=80.3.1
|
|
2
|
+
pkg-about>=1.3.3
|
|
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
|