Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Milk committed May 26, 2024
1 parent 1f57377 commit 0f6cbcc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,16 @@ dev = [
"mpl_fontkit"
]

[tool.flit.sdist]
exclude = [
"docs",
"app",
"data",
"img",
"tests",
"scripts",
"readthedocs.yaml",
]

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
2 changes: 1 addition & 1 deletion src/marsilea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Declarative creation of composable visualization"""

__version__ = "0.3.6"
__version__ = "0.4.0"

import marsilea.plotter as plotter
from ._deform import Deformation
Expand Down
5 changes: 3 additions & 2 deletions src/marsilea/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ def custom_legend(self, legend_func, name=None):
Parameters
----------

legend_func : Callable that return `Artist <matplotlib.artist.Artists>`
A function that return the legend object
legend_func : Callable
A function that return the legend object,
the legend must be an `Artist <matplotlib.artist.Artists>`
name : str, optional
The name of the legend

Expand Down

0 comments on commit 0f6cbcc

Please sign in to comment.