Skip to content

Commit 6c5c480

Browse files
committed
Bump version
1 parent e926773 commit 6c5c480

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

stpyvista/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Changelog
22

3-
## [v 0.1.0] -
3+
## [v 0.0.16] - 2024-03-29
44
- Add controls help description
55
- Remove network utility - it should be a different component
6-
6+
- Fix typing for python 3.9 support
77

88
## [v 0.0.15] - 2024-01-29
99
- Add start_xvfb wrapper to utils

stpyvista/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "stpyvista"
7-
version = "0.0.15"
7+
version = "0.0.16"
88
authors = [
99
{ name="Edwin Saavedra C.", email="esaavedrac@u.northwestern.edu" },
1010
]
1111
description = "Streamlit component to render pyvista 3D visualizations"
1212
readme = "README.md"
13-
requires-python = ">=3.10"
13+
requires-python = ">=3.9"
1414
classifiers = [
1515
"Programming Language :: Python :: 3",
1616
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",

stpyvista/src/stpyvista/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def stpyvista(
3434
plotter: pv.Plotter,
3535
use_container_width: bool = True,
3636
horizontal_align: Literal["center", "left", "right"] = "center",
37-
panel_kwargs: dict | None = None,
37+
panel_kwargs: Optional[dict] = None,
3838
bokeh_resources: Literal["CDN", "INLINE"] = "INLINE",
3939
key: Optional[str] = None,
4040
) -> None:

0 commit comments

Comments
 (0)