renumerate 1.1.13__zip → 1.2.0__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.1.13 → renumerate-1.2.0}/.readthedocs.yml +1 -1
- {renumerate-1.1.13 → renumerate-1.2.0}/CHANGES.rst +10 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/PKG-INFO +24 -13
- {renumerate-1.1.13 → renumerate-1.2.0}/README.rst +3 -2
- {renumerate-1.1.13 → renumerate-1.2.0}/docs/conf.py +1 -1
- {renumerate-1.1.13 → renumerate-1.2.0}/pyproject.toml +26 -26
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate/__about__.py +0 -1
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate.egg-info/PKG-INFO +24 -13
- renumerate-1.2.0/src/renumerate.egg-info/requires.txt +16 -0
- renumerate-1.1.13/src/renumerate.egg-info/requires.txt +0 -16
- {renumerate-1.1.13 → renumerate-1.2.0}/LICENSE +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/MANIFEST.in +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/docs/CHANGES.rst +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/docs/README.rst +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/docs/_static/.keep +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/docs/_templates/.keep +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/docs/index.rst +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/setup.cfg +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate/__init__.py +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate/_renumerate.py +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate.egg-info/SOURCES.txt +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate.egg-info/dependency_links.txt +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate.egg-info/top_level.txt +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/src/renumerate.egg-info/zip-safe +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/tests/__init__.py +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/tests/__main__.py +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/tests/data/.keep +0 -0
- {renumerate-1.1.13 → renumerate-1.2.0}/tests/test_main.py +0 -0
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.2.0 (2024-09-30)
|
|
5
|
+
------------------
|
|
6
|
+
- Drop support for Python 3.8
|
|
7
|
+
- Setup (dependencies) update.
|
|
8
|
+
|
|
9
|
+
1.1.14 (2024-08-13)
|
|
10
|
+
-------------------
|
|
11
|
+
- Add support for Python 3.13
|
|
12
|
+
- Setup (dependencies) update.
|
|
13
|
+
|
|
4
14
|
1.1.13 (2024-07-15)
|
|
5
15
|
-------------------
|
|
6
16
|
- Setup (dependencies) update.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -21,32 +21,32 @@ Classifier: Operating System :: OS Independent
|
|
|
21
21
|
Classifier: Natural Language :: Polish
|
|
22
22
|
Classifier: Programming Language :: Python
|
|
23
23
|
Classifier: Programming Language :: Python :: 3
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.9
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.10
|
|
27
26
|
Classifier: Programming Language :: Python :: 3.11
|
|
28
27
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
29
29
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
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
|
-
Requires-Dist: setuptools>=
|
|
37
|
-
Requires-Dist: pkg-about>=1.
|
|
36
|
+
Requires-Dist: setuptools>=75.1.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.0
|
|
38
38
|
Provides-Extra: doc
|
|
39
|
-
Requires-Dist: Sphinx>=7.
|
|
40
|
-
Requires-Dist: sphinx-toolbox>=3.
|
|
39
|
+
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
|
|
41
41
|
Requires-Dist: sphinx-tabs>=3.4.5; 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
|
-
Requires-Dist: sphinx-lint>=0.
|
|
44
|
+
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
45
45
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
46
|
+
Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=
|
|
49
|
-
Requires-Dist: rich>=13.
|
|
48
|
+
Requires-Dist: deepdiff>=8.0.1; extra == "test"
|
|
49
|
+
Requires-Dist: rich>=13.8.1; extra == "test"
|
|
50
50
|
|
|
51
51
|
renumerate
|
|
52
52
|
==========
|
|
@@ -105,7 +105,7 @@ Installation
|
|
|
105
105
|
|
|
106
106
|
Prerequisites:
|
|
107
107
|
|
|
108
|
-
+ Python 3.
|
|
108
|
+
+ Python 3.9 or higher
|
|
109
109
|
|
|
110
110
|
* https://www.python.org/
|
|
111
111
|
|
|
@@ -154,7 +154,7 @@ or on development mode:
|
|
|
154
154
|
License
|
|
155
155
|
=======
|
|
156
156
|
|
|
157
|
-
|
|
|
157
|
+
| |copyright|
|
|
158
158
|
| Licensed under the zlib/libpng License
|
|
159
159
|
| https://opensource.org/license/zlib
|
|
160
160
|
| Please refer to the accompanying LICENSE file.
|
|
@@ -166,6 +166,7 @@ Authors
|
|
|
166
166
|
|
|
167
167
|
.. |package| replace:: renumerate
|
|
168
168
|
.. |package_bold| replace:: **renumerate**
|
|
169
|
+
.. |copyright| replace:: Copyright (c) 2016-2024 Adam Karpierz
|
|
169
170
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
170
171
|
.. _Development page: https://github.com/karpierz/renumerate
|
|
171
172
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
@@ -175,6 +176,16 @@ Authors
|
|
|
175
176
|
Changelog
|
|
176
177
|
=========
|
|
177
178
|
|
|
179
|
+
1.2.0 (2024-09-30)
|
|
180
|
+
------------------
|
|
181
|
+
- Drop support for Python 3.8
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.1.14 (2024-08-13)
|
|
185
|
+
-------------------
|
|
186
|
+
- Add support for Python 3.13
|
|
187
|
+
- Setup (dependencies) update.
|
|
188
|
+
|
|
178
189
|
1.1.13 (2024-07-15)
|
|
179
190
|
-------------------
|
|
180
191
|
- Setup (dependencies) update.
|
|
@@ -55,7 +55,7 @@ Installation
|
|
|
55
55
|
|
|
56
56
|
Prerequisites:
|
|
57
57
|
|
|
58
|
-
+ Python 3.
|
|
58
|
+
+ Python 3.9 or higher
|
|
59
59
|
|
|
60
60
|
* https://www.python.org/
|
|
61
61
|
|
|
@@ -104,7 +104,7 @@ or on development mode:
|
|
|
104
104
|
License
|
|
105
105
|
=======
|
|
106
106
|
|
|
107
|
-
|
|
|
107
|
+
| |copyright|
|
|
108
108
|
| Licensed under the zlib/libpng License
|
|
109
109
|
| https://opensource.org/license/zlib
|
|
110
110
|
| Please refer to the accompanying LICENSE file.
|
|
@@ -116,6 +116,7 @@ Authors
|
|
|
116
116
|
|
|
117
117
|
.. |package| replace:: renumerate
|
|
118
118
|
.. |package_bold| replace:: **renumerate**
|
|
119
|
+
.. |copyright| replace:: Copyright (c) 2016-2024 Adam Karpierz
|
|
119
120
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
120
121
|
.. _Development page: https://github.com/karpierz/renumerate
|
|
121
122
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
@@ -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 = '7.4.7'
|
|
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,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
[build-system]
|
|
5
5
|
build-backend = 'setuptools.build_meta'
|
|
6
|
-
requires = ['setuptools>=
|
|
6
|
+
requires = ['setuptools>=75.1.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.20.0']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'renumerate'
|
|
10
|
-
version = '1.
|
|
10
|
+
version = '1.2.0'
|
|
11
11
|
description = 'Reverse enumerate.'
|
|
12
12
|
urls.Homepage = 'https://pypi.org/project/renumerate/'
|
|
13
13
|
urls.Documentation = 'https://renumerate.readthedocs.io/'
|
|
@@ -32,38 +32,38 @@ classifiers = [
|
|
|
32
32
|
'Natural Language :: Polish',
|
|
33
33
|
'Programming Language :: Python',
|
|
34
34
|
'Programming Language :: Python :: 3',
|
|
35
|
-
'Programming Language :: Python :: 3.8',
|
|
36
35
|
'Programming Language :: Python :: 3.9',
|
|
37
36
|
'Programming Language :: Python :: 3.10',
|
|
38
37
|
'Programming Language :: Python :: 3.11',
|
|
39
38
|
'Programming Language :: Python :: 3.12',
|
|
39
|
+
'Programming Language :: Python :: 3.13',
|
|
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.9.0,<4.0.0'
|
|
46
46
|
dependencies = [
|
|
47
47
|
# mandatory
|
|
48
|
-
'setuptools>=
|
|
49
|
-
'pkg-about>=1.
|
|
48
|
+
'setuptools>=75.1.0',
|
|
49
|
+
'pkg-about>=1.2.0',
|
|
50
50
|
# others
|
|
51
51
|
]
|
|
52
52
|
dynamic = ['readme']
|
|
53
53
|
[project.optional-dependencies]
|
|
54
54
|
doc = [
|
|
55
|
-
'Sphinx>=7.
|
|
56
|
-
'sphinx-toolbox>=3.
|
|
55
|
+
'Sphinx>=7.4.7',
|
|
56
|
+
'sphinx-toolbox>=3.8.0',
|
|
57
57
|
'sphinx-tabs>=3.4.5',
|
|
58
58
|
'sphinx-copybutton>=0.5.2',
|
|
59
59
|
'sphinxcontrib-spelling>=8.0.0',
|
|
60
|
-
'sphinx-lint>=0.
|
|
60
|
+
'sphinx-lint>=1.0.0',
|
|
61
61
|
'restructuredtext-lint>=1.4.0',
|
|
62
|
-
'nbsphinx>=0.9.
|
|
62
|
+
'nbsphinx>=0.9.5',
|
|
63
63
|
]
|
|
64
64
|
test = [
|
|
65
|
-
'deepdiff>=
|
|
66
|
-
'rich>=13.
|
|
65
|
+
'deepdiff>=8.0.1',
|
|
66
|
+
'rich>=13.8.1',
|
|
67
67
|
]
|
|
68
68
|
|
|
69
69
|
[project.scripts]
|
|
@@ -157,29 +157,29 @@ count = true
|
|
|
157
157
|
[tool.tox]
|
|
158
158
|
legacy_tox_ini = """
|
|
159
159
|
[tox]
|
|
160
|
-
envlist = py{
|
|
160
|
+
envlist = py{39,310,311,312,313}, pypy{39,310}, docs
|
|
161
161
|
labels =
|
|
162
|
-
py = py{
|
|
162
|
+
py = py{39,310,311,312,313}, pypy{39,310}
|
|
163
163
|
prepare = prepare
|
|
164
164
|
coverage = coverage
|
|
165
165
|
lint = lint
|
|
166
166
|
docs = docs
|
|
167
|
-
build = py{
|
|
168
|
-
deploy = py{
|
|
169
|
-
minversion = 4.
|
|
167
|
+
build = py{39,310,311,312,313}, pypy{39,310}, docs, build
|
|
168
|
+
deploy = py{39,310,311,312,313}, pypy{39,310}, docs, build, publish
|
|
169
|
+
minversion = 4.20.0
|
|
170
170
|
skip_missing_interpreters = true
|
|
171
171
|
requires =
|
|
172
172
|
{[base]deps}
|
|
173
|
-
virtualenv>=20.26.
|
|
174
|
-
tox-backtick>=0.
|
|
173
|
+
virtualenv>=20.26.6
|
|
174
|
+
tox-backtick>=0.5.0
|
|
175
175
|
tox-tags>=0.2.0
|
|
176
176
|
|
|
177
177
|
[base]
|
|
178
178
|
basepython = python3.12
|
|
179
179
|
deps =
|
|
180
|
-
pip>=24.
|
|
181
|
-
setuptools>=
|
|
182
|
-
wheel>=0.
|
|
180
|
+
pip>=24.2.0
|
|
181
|
+
setuptools>=75.1.0
|
|
182
|
+
wheel>=0.44.0
|
|
183
183
|
packagesubdir = renumerate
|
|
184
184
|
|
|
185
185
|
[testenv]
|
|
@@ -211,9 +211,9 @@ commands =
|
|
|
211
211
|
{envpython} -m coverage html
|
|
212
212
|
deps =
|
|
213
213
|
{[testenv]deps}
|
|
214
|
-
coverage>=7.6.
|
|
214
|
+
coverage>=7.6.1
|
|
215
215
|
covdefaults>=2.3.0
|
|
216
|
-
diff-cover>=9.
|
|
216
|
+
diff-cover>=9.2.0
|
|
217
217
|
|
|
218
218
|
[testenv:docs]
|
|
219
219
|
basepython = {[base]basepython}
|
|
@@ -227,7 +227,7 @@ extras = doc
|
|
|
227
227
|
deps =
|
|
228
228
|
|
|
229
229
|
[testenv:build]
|
|
230
|
-
depends = py{
|
|
230
|
+
depends = py{39,310,311,312,313}, pypy{39,310}, docs
|
|
231
231
|
basepython = {[base]basepython}
|
|
232
232
|
setenv =
|
|
233
233
|
{[testenv]setenv}
|
|
@@ -261,7 +261,7 @@ commands =
|
|
|
261
261
|
extras =
|
|
262
262
|
deps =
|
|
263
263
|
{[testenv]deps}
|
|
264
|
-
flake8>=7.1.
|
|
264
|
+
flake8>=7.1.1
|
|
265
265
|
flake8-pyproject>=1.2.3
|
|
266
266
|
flake8-docstrings>=1.7.0
|
|
267
267
|
pep8-naming>=0.14.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: renumerate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Reverse enumerate.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -21,32 +21,32 @@ Classifier: Operating System :: OS Independent
|
|
|
21
21
|
Classifier: Natural Language :: Polish
|
|
22
22
|
Classifier: Programming Language :: Python
|
|
23
23
|
Classifier: Programming Language :: Python :: 3
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.9
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.10
|
|
27
26
|
Classifier: Programming Language :: Python :: 3.11
|
|
28
27
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
29
29
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
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
|
-
Requires-Dist: setuptools>=
|
|
37
|
-
Requires-Dist: pkg-about>=1.
|
|
36
|
+
Requires-Dist: setuptools>=75.1.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.0
|
|
38
38
|
Provides-Extra: doc
|
|
39
|
-
Requires-Dist: Sphinx>=7.
|
|
40
|
-
Requires-Dist: sphinx-toolbox>=3.
|
|
39
|
+
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
|
|
41
41
|
Requires-Dist: sphinx-tabs>=3.4.5; 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
|
-
Requires-Dist: sphinx-lint>=0.
|
|
44
|
+
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
45
45
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
46
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
46
|
+
Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
|
|
47
47
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: deepdiff>=
|
|
49
|
-
Requires-Dist: rich>=13.
|
|
48
|
+
Requires-Dist: deepdiff>=8.0.1; extra == "test"
|
|
49
|
+
Requires-Dist: rich>=13.8.1; extra == "test"
|
|
50
50
|
|
|
51
51
|
renumerate
|
|
52
52
|
==========
|
|
@@ -105,7 +105,7 @@ Installation
|
|
|
105
105
|
|
|
106
106
|
Prerequisites:
|
|
107
107
|
|
|
108
|
-
+ Python 3.
|
|
108
|
+
+ Python 3.9 or higher
|
|
109
109
|
|
|
110
110
|
* https://www.python.org/
|
|
111
111
|
|
|
@@ -154,7 +154,7 @@ or on development mode:
|
|
|
154
154
|
License
|
|
155
155
|
=======
|
|
156
156
|
|
|
157
|
-
|
|
|
157
|
+
| |copyright|
|
|
158
158
|
| Licensed under the zlib/libpng License
|
|
159
159
|
| https://opensource.org/license/zlib
|
|
160
160
|
| Please refer to the accompanying LICENSE file.
|
|
@@ -166,6 +166,7 @@ Authors
|
|
|
166
166
|
|
|
167
167
|
.. |package| replace:: renumerate
|
|
168
168
|
.. |package_bold| replace:: **renumerate**
|
|
169
|
+
.. |copyright| replace:: Copyright (c) 2016-2024 Adam Karpierz
|
|
169
170
|
.. |respository| replace:: https://github.com/karpierz/renumerate.git
|
|
170
171
|
.. _Development page: https://github.com/karpierz/renumerate
|
|
171
172
|
.. _PyPI record: https://pypi.org/project/renumerate/
|
|
@@ -175,6 +176,16 @@ Authors
|
|
|
175
176
|
Changelog
|
|
176
177
|
=========
|
|
177
178
|
|
|
179
|
+
1.2.0 (2024-09-30)
|
|
180
|
+
------------------
|
|
181
|
+
- Drop support for Python 3.8
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.1.14 (2024-08-13)
|
|
185
|
+
-------------------
|
|
186
|
+
- Add support for Python 3.13
|
|
187
|
+
- Setup (dependencies) update.
|
|
188
|
+
|
|
178
189
|
1.1.13 (2024-07-15)
|
|
179
190
|
-------------------
|
|
180
191
|
- Setup (dependencies) update.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
setuptools>=75.1.0
|
|
2
|
+
pkg-about>=1.2.0
|
|
3
|
+
|
|
4
|
+
[doc]
|
|
5
|
+
Sphinx>=7.4.7
|
|
6
|
+
sphinx-toolbox>=3.8.0
|
|
7
|
+
sphinx-tabs>=3.4.5
|
|
8
|
+
sphinx-copybutton>=0.5.2
|
|
9
|
+
sphinxcontrib-spelling>=8.0.0
|
|
10
|
+
sphinx-lint>=1.0.0
|
|
11
|
+
restructuredtext-lint>=1.4.0
|
|
12
|
+
nbsphinx>=0.9.5
|
|
13
|
+
|
|
14
|
+
[test]
|
|
15
|
+
deepdiff>=8.0.1
|
|
16
|
+
rich>=13.8.1
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
setuptools>=70.3.0
|
|
2
|
-
pkg-about>=1.1.7
|
|
3
|
-
|
|
4
|
-
[doc]
|
|
5
|
-
Sphinx>=7.1.2
|
|
6
|
-
sphinx-toolbox>=3.7.0
|
|
7
|
-
sphinx-tabs>=3.4.5
|
|
8
|
-
sphinx-copybutton>=0.5.2
|
|
9
|
-
sphinxcontrib-spelling>=8.0.0
|
|
10
|
-
sphinx-lint>=0.9.1
|
|
11
|
-
restructuredtext-lint>=1.4.0
|
|
12
|
-
nbsphinx>=0.9.4
|
|
13
|
-
|
|
14
|
-
[test]
|
|
15
|
-
deepdiff>=7.0.1
|
|
16
|
-
rich>=13.7.1
|
|
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
|