Skip to content

Commit

Permalink
Move to 0.8.6.
Browse files Browse the repository at this point in the history
Fix issue in pyproject.toml.
  • Loading branch information
ArnaudBelcour committed Feb 26, 2024
1 parent 319e120 commit 6440d30
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

# mpwt 0.8.6 (2024-02-26)

## Fix:

- issue in pyproject.toml.

# mpwt 0.8.5 (2024-02-26)

## Modify:
Expand Down
2 changes: 1 addition & 1 deletion mpwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
from mpwt.utils import cleaning, cleaning_input, find_ptools_path, list_pgdb, pubmed_citations, remove_pgdbs
from mpwt.to_pathologic import create_pathologic_file

__version__='0.8.5'
__version__='0.8.6'
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ mpwt = "mpwt.__main__:run_mpwt"
Homepage = "https://github.com/AuReMe/mpwt"
Changelog = "https://github.com/AuReMe/mpwt/blob/main/CHANGELOG.md"

[tool.setuptools.package-dir]
toolbox = "mpwt"
[tool.setuptools]
packages = ['mpwt']
package-dir = {'mpwt'= 'mpwt'}

[tool.setuptools.dynamic]
version = { attr = "mpwt.__version__" }
Expand Down

0 comments on commit 6440d30

Please sign in to comment.