Skip to content

Commit

Permalink
Update known issues and bump ver (closes #76, closes #80, closes #81)
Browse files Browse the repository at this point in the history
  • Loading branch information
LSYS committed Dec 24, 2023
1 parent a2ec12d commit 3519d74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,8 @@ More fined-grained control for base plot options (eg font sizes, marker colors)
* Left-flushing of annotations relies on the `monospace` font.
* Plot may give strange behavior for few rows of data (six rows or fewer. [see this issue](https://github.com/LSYS/forestplot/issues/52))
* Plot can get cluttered with too many variables/rows (~30 onwards)
* Not tested with PyCharm (#80).
* Duplicated `varlabel` may lead to unexpected results (see #76, #81). `mplot` for grouped models could be useful for such cases (see #59, WIP).
<p align="right">(<a href="#top">back to top</a>)</p>

<!----------------- BACKGROUND AND ADDITIONAL RESOURCES ----------------->
Expand Down
2 changes: 1 addition & 1 deletion forestplot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""State version and import user-facing functions."""
VERSION = (0, 3, 2)
VERSION = (0, 3, 3)

__version__ = ".".join(map(str, VERSION))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
install_requires = ["pandas", "numpy", "matplotlib", "matplotlib-inline<=0.1.3"]
setup(
name="forestplot",
version="0.3.2",
version="0.3.3",
license="MIT",
author="Lucas Shen",
author_email="lucas@lucasshen.com",
Expand Down

0 comments on commit 3519d74

Please sign in to comment.