Skip to content

Commit 024d56a

Browse files
authored
Merge pull request #717 from bioimage-io/dev
Fix MANIFEST.in
2 parents f49bbe3 + 28f731b commit 024d56a

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include README.md
22
include LICENSE
3-
include bioimageio/spec/static/spdx_licenses.json
4-
include bioimageio/spec/static/tag_categories.json
3+
include src/bioimageio/spec/static/spdx_licenses.json
4+
include src/bioimageio/spec/static/tag_categories.json

changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ In this file we log both:
1010

1111
This changelog includes implementation details and my reference the [changes to the Resource Description Format](#changes-to-the-resource-description-format), e.g. in entry [bioimageio.spec 0.5.2](#bioimageiospec-052).
1212

13+
#### bioimageio.spec 0.5.5.3
14+
15+
- Fix MANIFEST.in
16+
1317
#### bioimageio.spec 0.5.5.2
1418

15-
- replace pooch with platformdirs dependency
19+
- Replace pooch with platformdirs dependency
1620

1721
#### bioimageio.spec 0.5.5.1
1822

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "bioimageio.spec"
33
description = "Parser and validator library for bioimage.io specifications"
44
authors = [{ name = "Fynn Beuttenmüller", email = "[email protected]" }]
55
requires-python = ">=3.8"
6+
readme = "README.md"
67
dependencies = [
78
"annotated-types>=0.5.0,<1",
89
"email_validator",

src/bioimageio/spec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
# ruff: noqa: E402
55

6-
__version__ = "0.5.5.2"
6+
__version__ = "0.5.5.3"
77
from loguru import logger
88

99
logger.disable("bioimageio.spec")

0 commit comments

Comments
 (0)