pytest-ipywidgets 1.30.1__tar.gz → 1.32.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.
- {pytest_ipywidgets-1.30.1 → pytest_ipywidgets-1.32.0}/.gitignore +2 -2
- {pytest_ipywidgets-1.30.1 → pytest_ipywidgets-1.32.0}/PKG-INFO +10 -4
- {pytest_ipywidgets-1.30.1 → pytest_ipywidgets-1.32.0}/README.md +1 -1
- {pytest_ipywidgets-1.30.1 → pytest_ipywidgets-1.32.0}/pyproject.toml +20 -3
- {pytest_ipywidgets-1.30.1 → pytest_ipywidgets-1.32.0}/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pytest-ipywidgets
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.32.0
|
|
4
4
|
Dynamic: Summary
|
|
5
5
|
Project-URL: Home, https://github.com/widgetti/solara/tree/master/packages/pytest-ipywidgets
|
|
6
6
|
Project-URL: Documentation, https://solara.dev
|
|
@@ -33,16 +33,22 @@ Requires-Dist: pixelmatch
|
|
|
33
33
|
Requires-Dist: playwright; python_version > '3.6'
|
|
34
34
|
Requires-Dist: pytest
|
|
35
35
|
Requires-Dist: pytest-playwright; python_version > '3.6'
|
|
36
|
-
Requires-Dist: solara-server[starlette]==1.
|
|
37
|
-
Requires-Dist: solara-ui==1.
|
|
36
|
+
Requires-Dist: solara-server[starlette]==1.32.0
|
|
37
|
+
Requires-Dist: solara-ui==1.32.0
|
|
38
38
|
Provides-Extra: all
|
|
39
39
|
Requires-Dist: pytest-ipywidgets[jupyterlab]; extra == 'all'
|
|
40
40
|
Requires-Dist: pytest-ipywidgets[notebook]; extra == 'all'
|
|
41
41
|
Requires-Dist: pytest-ipywidgets[voila]; extra == 'all'
|
|
42
|
+
Provides-Extra: ipywidgets7
|
|
43
|
+
Requires-Dist: lxml<5.2; extra == 'ipywidgets7'
|
|
44
|
+
Requires-Dist: voila~=0.3.0; extra == 'ipywidgets7'
|
|
45
|
+
Provides-Extra: ipywidgets8
|
|
46
|
+
Requires-Dist: voila>=0.4; extra == 'ipywidgets8'
|
|
42
47
|
Provides-Extra: jupyterlab
|
|
43
48
|
Requires-Dist: jupyterlab<4; extra == 'jupyterlab'
|
|
44
49
|
Provides-Extra: notebook
|
|
45
50
|
Requires-Dist: notebook<7; extra == 'notebook'
|
|
51
|
+
Provides-Extra: solara
|
|
46
52
|
Provides-Extra: voila
|
|
47
53
|
Requires-Dist: voila; extra == 'voila'
|
|
48
54
|
Description-Content-Type: text/markdown
|
|
@@ -53,7 +59,7 @@ Test ipywidgets with playwright and pytest.
|
|
|
53
59
|
# Installation
|
|
54
60
|
|
|
55
61
|
```bash
|
|
56
|
-
pip install "pytest-ipywidgets[all]"
|
|
62
|
+
pip install "pytest-ipywidgets[all]"
|
|
57
63
|
```
|
|
58
64
|
|
|
59
65
|
*(Note that the optional `[all]` installs all dependencies, including compatible versions of notebook, jupyterlab and voila.)*
|
|
@@ -4,7 +4,7 @@ Test ipywidgets with playwright and pytest.
|
|
|
4
4
|
# Installation
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
|
-
pip install "pytest-ipywidgets[all]"
|
|
7
|
+
pip install "pytest-ipywidgets[all]"
|
|
8
8
|
```
|
|
9
9
|
|
|
10
10
|
*(Note that the optional `[all]` installs all dependencies, including compatible versions of notebook, jupyterlab and voila.)*
|
|
@@ -10,10 +10,10 @@ authors = [{name = "Maarten A. Breddels", email = "maartenbreddels@gmail.com"}]
|
|
|
10
10
|
license = {file = "LICENSE"}
|
|
11
11
|
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
12
12
|
dynamic = ["description"]
|
|
13
|
-
version = "1.
|
|
13
|
+
version = "1.32.0"
|
|
14
14
|
dependencies = [
|
|
15
|
-
"solara-ui==1.
|
|
16
|
-
"solara-server[starlette]==1.
|
|
15
|
+
"solara-ui==1.32.0",
|
|
16
|
+
"solara-server[starlette]==1.32.0",
|
|
17
17
|
"pytest",
|
|
18
18
|
"playwright; python_version > '3.6'",
|
|
19
19
|
"pytest-playwright; python_version > '3.6'",
|
|
@@ -31,16 +31,33 @@ all = [
|
|
|
31
31
|
"pytest-ipywidgets[jupyterlab]",
|
|
32
32
|
"pytest-ipywidgets[notebook]",
|
|
33
33
|
]
|
|
34
|
+
|
|
35
|
+
# currently empty, but in the future we want to make the core package not depend
|
|
36
|
+
# on solara, but now we can have the docs future compatible.
|
|
37
|
+
solara = [
|
|
38
|
+
]
|
|
39
|
+
|
|
34
40
|
voila = [
|
|
35
41
|
"voila",
|
|
36
42
|
]
|
|
43
|
+
|
|
37
44
|
jupyterlab = [
|
|
38
45
|
"jupyterlab<4",
|
|
39
46
|
]
|
|
47
|
+
|
|
40
48
|
notebook = [
|
|
41
49
|
"notebook<7",
|
|
42
50
|
]
|
|
43
51
|
|
|
52
|
+
ipywidgets7 = [
|
|
53
|
+
"voila~=0.3.0",
|
|
54
|
+
"lxml<5.2"
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
ipywidgets8 = [
|
|
58
|
+
"voila>=0.4"
|
|
59
|
+
]
|
|
60
|
+
|
|
44
61
|
[project.entry-points.pytest11]
|
|
45
62
|
solara = "solara.test.pytest_plugin"
|
|
46
63
|
|
|
File without changes
|