Skip to content

Commit

Permalink
Make image links absolute so they also work from PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
ymyke committed Mar 11, 2022
1 parent 6243ed9 commit 1cf75c8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pmeirr, assetirr, df = verbose_xpme(
Will return `0.5525698793027238` and `0.19495150355969598` for the IRRs and produce this
dataframe:

![Example dataframe](images/example_df.png)
![Example dataframe](https://raw.githubusercontent.com/ymyke/pypme/main/images/example_df.png)

Notes:
- The `cashflows` are interpreted from a transaction account that is used to buy from an
Expand Down Expand Up @@ -56,7 +56,7 @@ pmeirr, assetirr, df = verbose_pme(

Results in this df and IRRs of 0:

![Garbage example df](images/garbage_example_df.png)
![Garbage example df](https://raw.githubusercontent.com/ymyke/pypme/main/images/garbage_example_df.png)

## References

Expand Down
2 changes: 1 addition & 1 deletion pypme/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.1.2'
__version__ = '0.1.3'
from .pme import verbose_pme, pme, verbose_xpme, xpme
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pypme"
version = "0.1.2"
version = "0.1.3"
description = "Python library for PME (Public Market Equivalent) calculation"
authors = ["ymyke"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pypme.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def test_version():
assert __version__ == "0.1.2"
assert __version__ == "0.1.3"


@pytest.mark.parametrize(
Expand Down

0 comments on commit 1cf75c8

Please sign in to comment.