pytest-ipywidgets 1.31.0__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.
@@ -82,8 +82,8 @@ build/
82
82
  ./tmp
83
83
  ./examples
84
84
  node_modules
85
- packages/assets/cdn
86
- packages/assets/dist/*
85
+ packages/solara-assets/cdn
86
+ packages/solara-assets/dist/*
87
87
 
88
88
  solara-env
89
89
  states
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pytest-ipywidgets
3
- Version: 1.31.0
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,12 +33,17 @@ 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.31.0
37
- Requires-Dist: solara-ui==1.31.0
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
@@ -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.31.0"
13
+ version = "1.32.0"
14
14
  dependencies = [
15
- "solara-ui==1.31.0",
16
- "solara-server[starlette]==1.31.0",
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,6 +31,7 @@ all = [
31
31
  "pytest-ipywidgets[jupyterlab]",
32
32
  "pytest-ipywidgets[notebook]",
33
33
  ]
34
+
34
35
  # currently empty, but in the future we want to make the core package not depend
35
36
  # on solara, but now we can have the docs future compatible.
36
37
  solara = [
@@ -39,13 +40,24 @@ solara = [
39
40
  voila = [
40
41
  "voila",
41
42
  ]
43
+
42
44
  jupyterlab = [
43
45
  "jupyterlab<4",
44
46
  ]
47
+
45
48
  notebook = [
46
49
  "notebook<7",
47
50
  ]
48
51
 
52
+ ipywidgets7 = [
53
+ "voila~=0.3.0",
54
+ "lxml<5.2"
55
+ ]
56
+
57
+ ipywidgets8 = [
58
+ "voila>=0.4"
59
+ ]
60
+
49
61
  [project.entry-points.pytest11]
50
62
  solara = "solara.test.pytest_plugin"
51
63