annotate 1.0.20__zip → 1.1.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.
- {annotate-1.0.20 → annotate-1.1.1}/CHANGES.rst +9 -0
- {annotate-1.0.20 → annotate-1.1.1}/PKG-INFO +23 -14
- {annotate-1.0.20 → annotate-1.1.1}/README.rst +3 -2
- {annotate-1.0.20 → annotate-1.1.1}/docs/conf.py +2 -1
- {annotate-1.0.20 → annotate-1.1.1}/pyproject.toml +24 -25
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate/__about__.py +0 -1
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate.egg-info/PKG-INFO +23 -14
- annotate-1.1.1/src/annotate.egg-info/requires.txt +16 -0
- annotate-1.0.20/src/annotate.egg-info/requires.txt +0 -16
- {annotate-1.0.20 → annotate-1.1.1}/.readthedocs.yml +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/LICENSE +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/MANIFEST.in +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/docs/CHANGES.rst +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/docs/README.rst +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/docs/_static/.keep +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/docs/_templates/.keep +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/docs/index.rst +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/setup.cfg +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate/__init__.py +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate/_annotate.py +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate.egg-info/SOURCES.txt +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate.egg-info/dependency_links.txt +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate.egg-info/top_level.txt +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/src/annotate.egg-info/zip-safe +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/tests/__init__.py +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/tests/__main__.py +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/tests/data/.keep +0 -0
- {annotate-1.0.20 → annotate-1.1.1}/tests/test_main.py +0 -0
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
1.1.1 (2024-10-09)
|
|
5
|
+
------------------
|
|
6
|
+
- Setup (dependencies) update.
|
|
7
|
+
|
|
8
|
+
1.1.0 (2024-09-30)
|
|
9
|
+
------------------
|
|
10
|
+
- Drop support for Python 3.8
|
|
11
|
+
- Setup (dependencies) update.
|
|
12
|
+
|
|
4
13
|
1.0.20 (2024-08-13)
|
|
5
14
|
-------------------
|
|
6
15
|
- Add support for Python 3.12 and 3.13
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -21,7 +21,6 @@ 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
|
|
@@ -31,23 +30,23 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
31
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
32
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
33
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.9.0
|
|
35
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
36
35
|
License-File: LICENSE
|
|
37
|
-
Requires-Dist: setuptools>=
|
|
38
|
-
Requires-Dist: pkg-about>=1.1
|
|
36
|
+
Requires-Dist: setuptools>=75.1.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.1
|
|
39
38
|
Provides-Extra: doc
|
|
40
|
-
Requires-Dist: Sphinx>=7.
|
|
41
|
-
Requires-Dist: sphinx-toolbox>=3.
|
|
42
|
-
Requires-Dist: sphinx-tabs>=3.4.
|
|
39
|
+
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-tabs>=3.4.7; extra == "doc"
|
|
43
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
44
43
|
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
45
|
-
Requires-Dist: sphinx-lint>=0.
|
|
44
|
+
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
46
45
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
47
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
46
|
+
Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
|
|
48
47
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: deepdiff>=
|
|
50
|
-
Requires-Dist: rich>=13.
|
|
48
|
+
Requires-Dist: deepdiff>=8.0.1; extra == "test"
|
|
49
|
+
Requires-Dist: rich>=13.9.2; extra == "test"
|
|
51
50
|
|
|
52
51
|
annotate
|
|
53
52
|
========
|
|
@@ -218,7 +217,7 @@ Installation
|
|
|
218
217
|
|
|
219
218
|
Prerequisites:
|
|
220
219
|
|
|
221
|
-
+ Python 3.
|
|
220
|
+
+ Python 3.9 or higher
|
|
222
221
|
|
|
223
222
|
* https://www.python.org/
|
|
224
223
|
|
|
@@ -267,7 +266,7 @@ or on development mode:
|
|
|
267
266
|
License
|
|
268
267
|
=======
|
|
269
268
|
|
|
270
|
-
|
|
|
269
|
+
| |copyright|
|
|
271
270
|
| Licensed under the zlib/libpng License
|
|
272
271
|
| https://opensource.org/license/zlib
|
|
273
272
|
| Please refer to the accompanying LICENSE file.
|
|
@@ -279,6 +278,7 @@ Authors
|
|
|
279
278
|
|
|
280
279
|
.. |package| replace:: annotate
|
|
281
280
|
.. |package_bold| replace:: **annotate**
|
|
281
|
+
.. |copyright| replace:: Copyright (c) 2012-2024 Adam Karpierz
|
|
282
282
|
.. |respository| replace:: https://github.com/karpierz/annotate.git
|
|
283
283
|
.. _Development page: https://github.com/karpierz/annotate
|
|
284
284
|
.. _PyPI record: https://pypi.org/project/annotate/
|
|
@@ -287,6 +287,15 @@ Authors
|
|
|
287
287
|
Changelog
|
|
288
288
|
=========
|
|
289
289
|
|
|
290
|
+
1.1.1 (2024-10-09)
|
|
291
|
+
------------------
|
|
292
|
+
- Setup (dependencies) update.
|
|
293
|
+
|
|
294
|
+
1.1.0 (2024-09-30)
|
|
295
|
+
------------------
|
|
296
|
+
- Drop support for Python 3.8
|
|
297
|
+
- Setup (dependencies) update.
|
|
298
|
+
|
|
290
299
|
1.0.20 (2024-08-13)
|
|
291
300
|
-------------------
|
|
292
301
|
- Add support for Python 3.12 and 3.13
|
|
@@ -167,7 +167,7 @@ Installation
|
|
|
167
167
|
|
|
168
168
|
Prerequisites:
|
|
169
169
|
|
|
170
|
-
+ Python 3.
|
|
170
|
+
+ Python 3.9 or higher
|
|
171
171
|
|
|
172
172
|
* https://www.python.org/
|
|
173
173
|
|
|
@@ -216,7 +216,7 @@ or on development mode:
|
|
|
216
216
|
License
|
|
217
217
|
=======
|
|
218
218
|
|
|
219
|
-
|
|
|
219
|
+
| |copyright|
|
|
220
220
|
| Licensed under the zlib/libpng License
|
|
221
221
|
| https://opensource.org/license/zlib
|
|
222
222
|
| Please refer to the accompanying LICENSE file.
|
|
@@ -228,6 +228,7 @@ Authors
|
|
|
228
228
|
|
|
229
229
|
.. |package| replace:: annotate
|
|
230
230
|
.. |package_bold| replace:: **annotate**
|
|
231
|
+
.. |copyright| replace:: Copyright (c) 2012-2024 Adam Karpierz
|
|
231
232
|
.. |respository| replace:: https://github.com/karpierz/annotate.git
|
|
232
233
|
.. _Development page: https://github.com/karpierz/annotate
|
|
233
234
|
.. _PyPI record: https://pypi.org/project/annotate/
|
|
@@ -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
|
|
@@ -48,6 +48,7 @@ extensions = [
|
|
|
48
48
|
#'sphinx.ext.coverage',
|
|
49
49
|
'sphinx.ext.ifconfig',
|
|
50
50
|
'sphinx.ext.napoleon',
|
|
51
|
+
#'sphinx_toolbox',
|
|
51
52
|
'sphinx_tabs.tabs',
|
|
52
53
|
'sphinx_copybutton',
|
|
53
54
|
'sphinxcontrib.spelling',
|
|
@@ -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.21.2']
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = 'annotate'
|
|
10
|
-
version = '1.
|
|
10
|
+
version = '1.1.1'
|
|
11
11
|
description = '''Decorator to set a function's __annotations__ like Py3.'''
|
|
12
12
|
urls.Homepage = 'https://pypi.org/project/annotate/'
|
|
13
13
|
urls.Documentation = 'https://annotate2.readthedocs.io/'
|
|
@@ -32,7 +32,6 @@ 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',
|
|
@@ -43,28 +42,28 @@ classifiers = [
|
|
|
43
42
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
44
43
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
45
44
|
]
|
|
46
|
-
requires-python = '>=3.
|
|
45
|
+
requires-python = '>=3.9.0,<4.0.0'
|
|
47
46
|
dependencies = [
|
|
48
47
|
# mandatory
|
|
49
|
-
'setuptools>=
|
|
50
|
-
'pkg-about>=1.1
|
|
48
|
+
'setuptools>=75.1.0',
|
|
49
|
+
'pkg-about>=1.2.1',
|
|
51
50
|
# others
|
|
52
51
|
]
|
|
53
52
|
dynamic = ['readme']
|
|
54
53
|
[project.optional-dependencies]
|
|
55
54
|
doc = [
|
|
56
|
-
'Sphinx>=7.
|
|
57
|
-
'sphinx-toolbox>=3.
|
|
58
|
-
'sphinx-tabs>=3.4.
|
|
55
|
+
'Sphinx>=7.4.7',
|
|
56
|
+
'sphinx-toolbox>=3.8.0',
|
|
57
|
+
'sphinx-tabs>=3.4.7',
|
|
59
58
|
'sphinx-copybutton>=0.5.2',
|
|
60
59
|
'sphinxcontrib-spelling>=8.0.0',
|
|
61
|
-
'sphinx-lint>=0.
|
|
60
|
+
'sphinx-lint>=1.0.0',
|
|
62
61
|
'restructuredtext-lint>=1.4.0',
|
|
63
|
-
'nbsphinx>=0.9.
|
|
62
|
+
'nbsphinx>=0.9.5',
|
|
64
63
|
]
|
|
65
64
|
test = [
|
|
66
|
-
'deepdiff>=
|
|
67
|
-
'rich>=13.
|
|
65
|
+
'deepdiff>=8.0.1',
|
|
66
|
+
'rich>=13.9.2',
|
|
68
67
|
]
|
|
69
68
|
|
|
70
69
|
[project.scripts]
|
|
@@ -99,7 +98,7 @@ annotate = [
|
|
|
99
98
|
|
|
100
99
|
[tool.setuptools.exclude-package-data]
|
|
101
100
|
'*' = ['*.c','*.h','*.cpp','*.hpp','*.cxx','*.hxx','*.pyx','*.pxd']
|
|
102
|
-
|
|
101
|
+
annotate = [
|
|
103
102
|
]
|
|
104
103
|
|
|
105
104
|
[tool.coverage.run]
|
|
@@ -158,28 +157,28 @@ count = true
|
|
|
158
157
|
[tool.tox]
|
|
159
158
|
legacy_tox_ini = """
|
|
160
159
|
[tox]
|
|
161
|
-
envlist = py{
|
|
160
|
+
envlist = py{39,310,311,312,313}, pypy{39,310}, docs
|
|
162
161
|
labels =
|
|
163
|
-
py = py{
|
|
162
|
+
py = py{39,310,311,312,313}, pypy{39,310}
|
|
164
163
|
prepare = prepare
|
|
165
164
|
coverage = coverage
|
|
166
165
|
lint = lint
|
|
167
166
|
docs = docs
|
|
168
|
-
build = py{
|
|
169
|
-
deploy = py{
|
|
170
|
-
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.21.2
|
|
171
170
|
skip_missing_interpreters = true
|
|
172
171
|
requires =
|
|
173
172
|
{[base]deps}
|
|
174
|
-
virtualenv>=20.26.
|
|
175
|
-
tox-backtick>=0.
|
|
173
|
+
virtualenv>=20.26.6
|
|
174
|
+
tox-backtick>=0.5.1
|
|
176
175
|
tox-tags>=0.2.0
|
|
177
176
|
|
|
178
177
|
[base]
|
|
179
178
|
basepython = python3.12
|
|
180
179
|
deps =
|
|
181
180
|
pip>=24.2.0
|
|
182
|
-
setuptools>=
|
|
181
|
+
setuptools>=75.1.0
|
|
183
182
|
wheel>=0.44.0
|
|
184
183
|
packagesubdir = annotate
|
|
185
184
|
|
|
@@ -212,9 +211,9 @@ commands =
|
|
|
212
211
|
{envpython} -m coverage html
|
|
213
212
|
deps =
|
|
214
213
|
{[testenv]deps}
|
|
215
|
-
coverage>=7.6.
|
|
214
|
+
coverage>=7.6.2
|
|
216
215
|
covdefaults>=2.3.0
|
|
217
|
-
diff-cover>=9.
|
|
216
|
+
diff-cover>=9.2.0
|
|
218
217
|
|
|
219
218
|
[testenv:docs]
|
|
220
219
|
basepython = {[base]basepython}
|
|
@@ -228,7 +227,7 @@ extras = doc
|
|
|
228
227
|
deps =
|
|
229
228
|
|
|
230
229
|
[testenv:build]
|
|
231
|
-
depends = py{
|
|
230
|
+
depends = py{39,310,311,312,313}, pypy{39,310}, docs
|
|
232
231
|
basepython = {[base]basepython}
|
|
233
232
|
setenv =
|
|
234
233
|
{[testenv]setenv}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: annotate
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Decorator to set a function's __annotations__ like Py3.
|
|
5
5
|
Author: Adam Karpierz
|
|
6
6
|
Author-email: adam@karpierz.net
|
|
@@ -21,7 +21,6 @@ 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
|
|
@@ -31,23 +30,23 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
31
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
32
31
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
33
32
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
|
-
Requires-Python: <4.0.0,>=3.
|
|
33
|
+
Requires-Python: <4.0.0,>=3.9.0
|
|
35
34
|
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
36
35
|
License-File: LICENSE
|
|
37
|
-
Requires-Dist: setuptools>=
|
|
38
|
-
Requires-Dist: pkg-about>=1.1
|
|
36
|
+
Requires-Dist: setuptools>=75.1.0
|
|
37
|
+
Requires-Dist: pkg-about>=1.2.1
|
|
39
38
|
Provides-Extra: doc
|
|
40
|
-
Requires-Dist: Sphinx>=7.
|
|
41
|
-
Requires-Dist: sphinx-toolbox>=3.
|
|
42
|
-
Requires-Dist: sphinx-tabs>=3.4.
|
|
39
|
+
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-toolbox>=3.8.0; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-tabs>=3.4.7; extra == "doc"
|
|
43
42
|
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
44
43
|
Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
|
|
45
|
-
Requires-Dist: sphinx-lint>=0.
|
|
44
|
+
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
|
|
46
45
|
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
47
|
-
Requires-Dist: nbsphinx>=0.9.
|
|
46
|
+
Requires-Dist: nbsphinx>=0.9.5; extra == "doc"
|
|
48
47
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: deepdiff>=
|
|
50
|
-
Requires-Dist: rich>=13.
|
|
48
|
+
Requires-Dist: deepdiff>=8.0.1; extra == "test"
|
|
49
|
+
Requires-Dist: rich>=13.9.2; extra == "test"
|
|
51
50
|
|
|
52
51
|
annotate
|
|
53
52
|
========
|
|
@@ -218,7 +217,7 @@ Installation
|
|
|
218
217
|
|
|
219
218
|
Prerequisites:
|
|
220
219
|
|
|
221
|
-
+ Python 3.
|
|
220
|
+
+ Python 3.9 or higher
|
|
222
221
|
|
|
223
222
|
* https://www.python.org/
|
|
224
223
|
|
|
@@ -267,7 +266,7 @@ or on development mode:
|
|
|
267
266
|
License
|
|
268
267
|
=======
|
|
269
268
|
|
|
270
|
-
|
|
|
269
|
+
| |copyright|
|
|
271
270
|
| Licensed under the zlib/libpng License
|
|
272
271
|
| https://opensource.org/license/zlib
|
|
273
272
|
| Please refer to the accompanying LICENSE file.
|
|
@@ -279,6 +278,7 @@ Authors
|
|
|
279
278
|
|
|
280
279
|
.. |package| replace:: annotate
|
|
281
280
|
.. |package_bold| replace:: **annotate**
|
|
281
|
+
.. |copyright| replace:: Copyright (c) 2012-2024 Adam Karpierz
|
|
282
282
|
.. |respository| replace:: https://github.com/karpierz/annotate.git
|
|
283
283
|
.. _Development page: https://github.com/karpierz/annotate
|
|
284
284
|
.. _PyPI record: https://pypi.org/project/annotate/
|
|
@@ -287,6 +287,15 @@ Authors
|
|
|
287
287
|
Changelog
|
|
288
288
|
=========
|
|
289
289
|
|
|
290
|
+
1.1.1 (2024-10-09)
|
|
291
|
+
------------------
|
|
292
|
+
- Setup (dependencies) update.
|
|
293
|
+
|
|
294
|
+
1.1.0 (2024-09-30)
|
|
295
|
+
------------------
|
|
296
|
+
- Drop support for Python 3.8
|
|
297
|
+
- Setup (dependencies) update.
|
|
298
|
+
|
|
290
299
|
1.0.20 (2024-08-13)
|
|
291
300
|
-------------------
|
|
292
301
|
- Add support for Python 3.12 and 3.13
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
setuptools>=75.1.0
|
|
2
|
+
pkg-about>=1.2.1
|
|
3
|
+
|
|
4
|
+
[doc]
|
|
5
|
+
Sphinx>=7.4.7
|
|
6
|
+
sphinx-toolbox>=3.8.0
|
|
7
|
+
sphinx-tabs>=3.4.7
|
|
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.9.2
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
setuptools>=72.2.0
|
|
2
|
-
pkg-about>=1.1.8
|
|
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
|
|
File without changes
|