Skip to content

Commit 8f4c3a8

Browse files
committed
replace preadator, update packages for python 3.13
update gitignore update Dockerfile, pyproject.toml
1 parent 089cf7b commit 8f4c3a8

45 files changed

Lines changed: 810 additions & 428 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ uv.lock
184184
#husky
185185
node_modules
186186

187+
#uv
188+
transforms/images/*/uv.lock
187189

188190
# uv lockfiles (generated; ignore in all nested projects)
189191
**/uv.lock

transforms/images/binary-operations-tool/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.6-dev0
2+
current_version = 0.5.4-dev0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<dev>\d+))?

transforms/images/binary-operations-tool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Binary Operations Plugin (v0.5.6-dev0)
1+
# Binary Operations Plugin (v0.5.4-dev0)
22

33
This WIPP plugin does Morphological Image Processing on binary and instance labelled images.
44
The operations available are:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.6-dev0
1+
0.5.4-dev0

transforms/images/binary-operations-tool/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Binary Operations Plugin",
3-
"version": "0.5.6-dev0",
4-
"containerId": "polusai/binary-operations-tool:0.5.6-dev0",
3+
"version": "0.5.4-dev0",
4+
"containerId": "polusai/binary-operations-tool:0.5.4-dev0",
55
"title": "Binary Operations Plugin",
66
"description": "Everything you need to start a WIPP plugin.",
77
"author": "Nick Schaub (nick.schaub@nih.gov), Madhuri Vihani",

transforms/images/binary-operations-tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires-python = ">=3.11"
55

66
[tool.poetry]
77
name = "polus-images-transforms-images-binary-operations"
8-
version = "0.5.6-dev0"
8+
version = "0.5.4-dev0"
99
description = ""
1010
authors = ["nicholas-schaub <nick.schaub@nih.gov>", "Madhuri Vihani"]
1111
readme = "README.md"

transforms/images/binary-operations-tool/src/polus/images/transforms/images/binary_operations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Binary operations tool."""
2-
__version__ = "0.5.6-dev0"
2+
__version__ = "0.5.4-dev0"
33

44
from . import utils
55
from .binops import Operation

transforms/images/image-calculator-tool/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.4-dev0
2+
current_version = 0.2.3-dev0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<dev>\d+))?

transforms/images/image-calculator-tool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Image Calculator (v0.2.4-dev0)
1+
# Image Calculator (v0.2.3-dev0)
22

33
This plugin performs pixel-wise operations between two image collections.
44
For example, images in one image collection can be subtracted from images in another collection.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4-dev0
1+
0.2.3-dev0

0 commit comments

Comments
 (0)