Skip to content

Commit 4fa58f3

Browse files
Release v0.0.3
1 parent 0323ab0 commit 4fa58f3

4 files changed

Lines changed: 18 additions & 10 deletions

File tree

docs/gallery/index.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,46 +30,54 @@ This page contains all the `plotjs` examples from this website.
3030

3131
<div style="display: flex;">
3232

33-
<iframe width="100%" height="300" src="../iframes/CSS.html" style="flex: 1; border: none;">
33+
<iframe width="100%" height="300" src="../iframes/quickstart9.html" style="flex: 1; border: none;">
3434
3535
</iframe>
3636

37-
<iframe width="100%" height="300" src="../iframes/quickstart2.html" style="flex: 1; border: none;">
37+
<iframe width="100%" height="300" src="../iframes/CSS.html" style="flex: 1; border: none;">
3838
3939
</iframe>
4040

4141
</div>
4242

4343
<div style="display: flex;">
4444

45-
<iframe width="100%" height="300" src="../iframes/javascript.html" style="flex: 1; border: none;">
45+
<iframe width="100%" height="300" src="../iframes/quickstart2.html" style="flex: 1; border: none;">
4646
4747
</iframe>
4848

49-
<iframe width="100%" height="300" src="../iframes/quickstart3.html" style="flex: 1; border: none;">
49+
<iframe width="100%" height="300" src="../iframes/javascript.html" style="flex: 1; border: none;">
5050
5151
</iframe>
5252

5353
</div>
5454

5555
<div style="display: flex;">
5656

57-
<iframe width="100%" height="300" src="../iframes/javascript2.html" style="flex: 1; border: none;">
57+
<iframe width="100%" height="300" src="../iframes/quickstart3.html" style="flex: 1; border: none;">
5858
5959
</iframe>
6060

61-
<iframe width="100%" height="300" src="../iframes/CSS-2.html" style="flex: 1; border: none;">
61+
<iframe width="100%" height="300" src="../iframes/javascript2.html" style="flex: 1; border: none;">
6262
6363
</iframe>
6464

6565
</div>
6666

6767
<div style="display: flex;">
6868

69+
<iframe width="100%" height="300" src="../iframes/CSS-2.html" style="flex: 1; border: none;">
70+
71+
</iframe>
72+
6973
<iframe width="100%" height="300" src="../iframes/quickstart6.html" style="flex: 1; border: none;">
7074
7175
</iframe>
7276

77+
</div>
78+
79+
<div style="display: flex;">
80+
7381
<iframe width="100%" height="300" src="../iframes/quickstart7.html" style="flex: 1; border: none;">
7482
7583
</iframe>

plotjs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .main import MagicPlot
22

3-
__version__ = "0.0.2"
3+
__version__ = "0.0.3"
44
__all__: list[str] = [
55
"MagicPlot",
66
]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "plotjs"
33
description = "Turn static matplotlib charts into interactive web visualizations"
4-
version = "0.0.2"
4+
version = "0.0.3"
55
license = "MIT"
66
license-files = ["LICENSE"]
77
keywords = ["matplotlib", "interactive", "javascript", "web", "css", "d3", "mpld3", "plotnine"]
@@ -13,7 +13,7 @@ requires-python = ">=3.10"
1313
classifiers = [
1414
"Programming Language :: Python :: 3",
1515
"Operating System :: OS Independent",
16-
"Development Status :: 3 - Alpha"
16+
"Development Status :: 4 - Beta"
1717
]
1818
dependencies = [
1919
"jinja2>=3.0.0",

tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ def test_overall():
7676

7777

7878
def test_version():
79-
assert plotjs.__version__ == "0.0.2"
79+
assert plotjs.__version__ == "0.0.3"

0 commit comments

Comments
 (0)