Skip to content

Commit

Permalink
Merge 2741415 into 14f2531
Browse files Browse the repository at this point in the history
  • Loading branch information
klieret committed Aug 27, 2021
2 parents 14f2531 + 2741415 commit 2108521
Show file tree
Hide file tree
Showing 16 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
include sunburst/version.txt
include README.md
include LICENSE.txt
recursive-include examples/
include sunburst/examples/*.py
include sunburst/examples/data/*.txt
include sunburst/examples/figures/.keep
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

🔖 **Check out the [full documentation](https://sunburst.readthedocs.io/en/latest/)!**

🚧 **This is an older project that is currently being brushed up** 🚧

## Introduction

`sunburst` creates "sunburst charts" (also called "Ring Charts", "Hierarchical Pie Chargs" or "Multilevel Pie Charts") together with the `matplotlib` package.
Expand Down Expand Up @@ -59,6 +61,7 @@ pip3 install sunburst

For more information about recent changes, see the [changelog](https://sunburst.readthedocs.io/en/latest/changelog.html).

* The 2.0 version will have a different API without the `Path` class
* Before the first release to pypi, this package was called `hpie`.
* There have since bean many non-backwards compatible changes to the API: Most importantly, the `HPie` class is now `SunburstPlot` and the package is called `sunburst`
* To get the old version back, check out the `old-hpie` branch. It will however not be maintained any longer.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion sunburst/tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


def get_all_example_files() -> List[Path]:
examples_dir = base_dir.parent / "examples"
examples_dir = base_dir / "examples"
return [
f
for f in examples_dir.iterdir()
Expand Down

0 comments on commit 2108521

Please sign in to comment.