solara 1.46.0__tar.gz → 1.48.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: solara
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.48.0
|
|
4
4
|
Dynamic: Summary
|
|
5
5
|
Project-URL: Home, https://www.github.com/widgetti/solara
|
|
6
6
|
Project-URL: Documentation, https://solara.dev
|
|
@@ -28,8 +28,8 @@ License: The MIT License (MIT)
|
|
|
28
28
|
THE SOFTWARE.
|
|
29
29
|
Classifier: License :: OSI Approved :: MIT License
|
|
30
30
|
Requires-Python: >=3.7
|
|
31
|
-
Requires-Dist: solara-server[dev,starlette]==1.
|
|
32
|
-
Requires-Dist: solara-ui[all]==1.
|
|
31
|
+
Requires-Dist: solara-server[dev,starlette]==1.48.0
|
|
32
|
+
Requires-Dist: solara-ui[all]==1.48.0
|
|
33
33
|
Provides-Extra: all
|
|
34
34
|
Requires-Dist: altair; extra == 'all'
|
|
35
35
|
Requires-Dist: bqplot; extra == 'all'
|
|
@@ -54,13 +54,13 @@ Requires-Dist: polars; extra == 'all'
|
|
|
54
54
|
Requires-Dist: pre-commit; extra == 'all'
|
|
55
55
|
Requires-Dist: pytest; extra == 'all'
|
|
56
56
|
Requires-Dist: pytest-cov; extra == 'all'
|
|
57
|
-
Requires-Dist: pytest-ipywidgets[all]==1.
|
|
57
|
+
Requires-Dist: pytest-ipywidgets[all]==1.48.0; extra == 'all'
|
|
58
58
|
Requires-Dist: pytest-mock; extra == 'all'
|
|
59
59
|
Requires-Dist: pytest-playwright; extra == 'all'
|
|
60
60
|
Requires-Dist: pytest-timeout; extra == 'all'
|
|
61
61
|
Requires-Dist: python-dotenv; extra == 'all'
|
|
62
62
|
Requires-Dist: ruff; extra == 'all'
|
|
63
|
-
Requires-Dist: solara-assets==1.
|
|
63
|
+
Requires-Dist: solara-assets==1.48.0; extra == 'all'
|
|
64
64
|
Requires-Dist: tiktoken; (python_version >= '3.9') and extra == 'all'
|
|
65
65
|
Requires-Dist: types-markdown; extra == 'all'
|
|
66
66
|
Requires-Dist: types-pyyaml; extra == 'all'
|
|
@@ -70,7 +70,7 @@ Requires-Dist: vaex-hdf5; (python_version < '3.11') and extra == 'all'
|
|
|
70
70
|
Requires-Dist: vaex-jupyter; (python_version < '3.11') and extra == 'all'
|
|
71
71
|
Requires-Dist: vega-datasets; extra == 'all'
|
|
72
72
|
Provides-Extra: assets
|
|
73
|
-
Requires-Dist: solara-assets==1.
|
|
73
|
+
Requires-Dist: solara-assets==1.48.0; extra == 'assets'
|
|
74
74
|
Provides-Extra: dev
|
|
75
75
|
Requires-Dist: bqplot; extra == 'dev'
|
|
76
76
|
Requires-Dist: bqplot-image-gl; extra == 'dev'
|
|
@@ -115,7 +115,7 @@ Requires-Dist: vaex-core; (python_version < '3.11') and extra == 'documentation'
|
|
|
115
115
|
Requires-Dist: vaex-hdf5; (python_version < '3.11') and extra == 'documentation'
|
|
116
116
|
Requires-Dist: vega-datasets; extra == 'documentation'
|
|
117
117
|
Provides-Extra: pytest
|
|
118
|
-
Requires-Dist: pytest-ipywidgets[all]==1.
|
|
118
|
+
Requires-Dist: pytest-ipywidgets[all]==1.48.0; extra == 'pytest'
|
|
119
119
|
Description-Content-Type: text/markdown
|
|
120
120
|
|
|
121
121
|
**A Pure Python, React-style Framework for Scaling Your Jupyter and Web Apps**
|
|
@@ -11,13 +11,13 @@ license = {file = "LICENSE"}
|
|
|
11
11
|
requires-python = ">=3.7"
|
|
12
12
|
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
13
13
|
dynamic = ["description"]
|
|
14
|
-
version = "1.
|
|
14
|
+
version = "1.48.0"
|
|
15
15
|
packages = [
|
|
16
16
|
{ include = "solara" }
|
|
17
17
|
]
|
|
18
18
|
dependencies = [
|
|
19
|
-
"solara-ui[all]==1.
|
|
20
|
-
"solara-server[starlette,dev]==1.
|
|
19
|
+
"solara-ui[all]==1.48.0",
|
|
20
|
+
"solara-server[starlette,dev]==1.48.0"
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
[project.urls]
|
|
@@ -33,7 +33,7 @@ all = [
|
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
assets = [
|
|
36
|
-
"solara-assets==1.
|
|
36
|
+
"solara-assets==1.48.0"
|
|
37
37
|
]
|
|
38
38
|
|
|
39
39
|
documentation = [
|
|
@@ -55,7 +55,7 @@ documentation = [
|
|
|
55
55
|
|
|
56
56
|
# for backwards compatibility to support solara[pytest]
|
|
57
57
|
pytest = [
|
|
58
|
-
"pytest-ipywidgets[all]==1.
|
|
58
|
+
"pytest-ipywidgets[all]==1.48.0"
|
|
59
59
|
]
|
|
60
60
|
|
|
61
61
|
# for backwards compatibility to support solara[dev]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|