Skip to content

Commit 1afe2fa

Browse files
authored
fix: pin QuPath version to 0.6.0 (#355)
1 parent 0f67ad2 commit 1afe2fa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/aignostics/qupath/_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def update_install_progress() -> None:
4545
if progress.status is InstallProgressState.DOWNLOADING:
4646
if progress.archive_path and progress.archive_size:
4747
install_info.set_text(
48-
f"Downloading QuPath v{progress.archive_version} "
48+
f"Downloading QuPath {progress.archive_version} "
4949
f"({humanize.naturalsize(float(progress.archive_size))}) "
5050
f"to {progress.archive_path}"
5151
)

src/aignostics/qupath/_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
from ._settings import Settings
3737

38-
QUPATH_VERSION = "0.6.0-rc5"
38+
QUPATH_VERSION = "0.6.0"
3939
DOWNLOAD_CHUNK_SIZE = 10 * 1024 * 1024
4040
QUPATH_LAUNCH_MAX_WAIT_TIME = 30 # seconds, maximum wait time for QuPath to start
4141
QUPATH_SCRIPT_MAX_EXECUTION_TIME = 60 * 60 * 2 # seconds, maximum wait time for QuPath to run a script

0 commit comments

Comments
 (0)