Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion visualization/precompute-slide-tool/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.7.2
current_version = 1.7.3-dev0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion visualization/precompute-slide-tool/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM polusai/bfio:2.1.9
FROM polusai/bfio:2.4.5

# environment variables defined in polusai/bfio
ENV EXEC_DIR="/opt/executables"
Expand Down
2 changes: 1 addition & 1 deletion visualization/precompute-slide-tool/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Polus Precompute Slide Plugin (1.7.2)
# Polus Precompute Slide Plugin (1.7.3-dev0)

This WIPP plugin generates image pyramids in multiple viewing formats. Each
output has a special filepattern variable that will be used to combine images
Expand Down
2 changes: 1 addition & 1 deletion visualization/precompute-slide-tool/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.2
1.7.3-dev0
2 changes: 1 addition & 1 deletion visualization/precompute-slide-tool/ict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ ui:
key: inputs.filePattern
title: 'Image Pattern: '
type: text
version: 1.7.2
version: 1.7.3-dev0
4 changes: 2 additions & 2 deletions visualization/precompute-slide-tool/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Precompute Slide",
"version": "1.7.2",
"containerId": "polusai/precompute-slide-tool:1.7.2",
"version": "1.7.3-dev0",
"containerId": "polusai/precompute-slide-tool:1.7.3-dev0",
"baseCommand": [
"python3",
"-m",
Expand Down
11 changes: 6 additions & 5 deletions visualization/precompute-slide-tool/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
[tool.poetry]
name = "polus-images-visualization-precompute-slide"
version = "1.7.2"
version = "1.7.3-dev0"
description = "Polus Precompute Slide Plugin."
authors = [
"Madhuri Vihani <Madhuri.Vihani@nih.gov>",
"Nick Schaub <Nick.Schaub@nih.gov>",
"Antoine Gerardin <antoine.gerardin@nih.gov>",
"Najib Ishaq <najib.ishaq@nih.gov>"
"Najib Ishaq <najib.ishaq@nih.gov>",
"Bengt Ljungquist <bengt.ljungquist@nih.gov>"
]
readme = "README.md"
packages = [ { include = "polus", from = "src" } ]

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.10,<3.12"
typer = "^0.7.0"
numpy = "~1.25.2"
bfio = { version = "2.3.3", extras = ["all"] }
bfio = { version = "2.4.5", extras = ["all"] }
preadator = "0.4.0.dev2"
filepattern = "^2.0.4"
imageio = "^2.33.1"
imageio = "^2.36.1"

[tool.poetry.group.dev.dependencies]
zarr = "^2.16.1"
Expand Down