Skip to content

Commit

Permalink
Adding new/updated cellcanvas_server_0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kephale committed Aug 12, 2024
1 parent 2da3f7b commit 5db147c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Binary file modified album_catalog_index.db
Binary file not shown.
3 changes: 3 additions & 0 deletions solutions/cellcanvas/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.6] - 2024-08-12
Update for arg handling for run

## [0.0.5] - 2024-08-11
Remove defaults

Expand Down
4 changes: 2 additions & 2 deletions solutions/cellcanvas/server/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def check_solution_allowed(catalog: str, group: str, name: str):
def run_solution_endpoint(catalog: str, group: str, name: str, version: str, solution_args: SolutionArgs):
check_solution_allowed(catalog, group, name)
try:
args_list = []
args_list = [""]
for key, value in solution_args.args.items():
args_list.extend([f"--{key} {str(value)}"])

Expand Down Expand Up @@ -243,7 +243,7 @@ def upgrade_endpoint():
setup(
group="cellcanvas",
name="server",
version="0.0.5",
version="0.0.6",
title="FastAPI CellCanvas Server",
description="Backend for CellCanvas with Copick Config Support.",
solution_creators=["Kyle Harrington"],
Expand Down
6 changes: 3 additions & 3 deletions solutions/cellcanvas/server/solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ args:
description: Path to the Copick configuration file.
name: copick_config_path
type: string
changelog: Remove defaults
changelog: Update for arg handling for run
description: Backend for CellCanvas with Copick Config Support.
group: cellcanvas
license: MIT
Expand All @@ -16,6 +16,6 @@ tags:
- album
- server
- copick
timestamp: '2024-08-11T10:14:58.338588'
timestamp: '2024-08-12T15:53:55.267594'
title: FastAPI CellCanvas Server
version: 0.0.5
version: 0.0.6

0 comments on commit 5db147c

Please sign in to comment.