Skip to content

Commit

Permalink
Fixed test case
Browse files Browse the repository at this point in the history
Fixed pyproject.toml
  • Loading branch information
Laplusdestiny committed Apr 10, 2024
1 parent da34ea7 commit e0a7cae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ keywords = ["plotly", "graph", "easy", "laplusdestiny"]
Issues = "https://github.com/Laplusdestiny/plotly_extend_wrapper/issues"
Repository = "https://github.com/Laplusdestiny/plotly_extend_wrapper.git"


[tool.poetry]
name = "plotly-extend-wrapper"
version = "1.1.0"
description = "plotly-extend-wrapper: Extended Python library for Plotly"
authors = ["Laplusdestiny <laplusdestiny@laplusdestiny.com>"]

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
plotly = ">=5.15.0"
Expand Down
4 changes: 2 additions & 2 deletions test/test_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def test_PlotSurface():
data = load_iris(as_frame=True)

surface = Plot_surface(
data,
data["frame"],
x="sepal length (cm)",
y="petal length (cm)",
z="petal height (cm)"
Expand All @@ -305,7 +305,7 @@ def test_PlotSurface_with_smoothing():
data = load_iris(as_frame=True)

surface = Plot_surface(
data,
data["frame"],
x="sepal length (cm)",
y="petal length (cm)",
z="petal height (cm)",
Expand Down

0 comments on commit e0a7cae

Please sign in to comment.