Skip to content
Merged
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ dependencies = [
"loguru>=0.7.3,<1",
"openslide-bin>=4.0.0.10,<5",
"openslide-python>=1.4.3,<2",
"pandas>=2.3.3,<3",
"pandas>=2.3.3,<4",
"platformdirs>=4.3.2,<5",
"procrastinate>=3.5.3",
"fastparquet>=2025.12.0,<2026.0.0; python_version < '3.14'",
Expand Down
6 changes: 0 additions & 6 deletions src/aignostics/platform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,10 @@
"CLIENT_ID_INTERACTIVE_STAGING",
"CLIENT_ID_INTERACTIVE_TEST",
"DEFAULT_CPU_PROVISIONING_MODE",
"DEFAULT_CPU_PROVISIONING_MODE",
"DEFAULT_FLEX_START_MAX_RUN_DURATION_MINUTES",
"DEFAULT_GPU_PROVISIONING_MODE",
"DEFAULT_GPU_PROVISIONING_MODE",
"DEFAULT_GPU_TYPE",
"DEFAULT_GPU_TYPE",
"DEFAULT_MAX_GPUS_PER_SLIDE",
"DEFAULT_MAX_GPUS_PER_SLIDE",
"DEFAULT_NODE_ACQUISITION_TIMEOUT_MINUTES",
"DEVICE_URL_DEV",
"DEVICE_URL_PRODUCTION",
Expand All @@ -132,7 +128,6 @@
"LIST_APPLICATION_RUNS_MAX_PAGE_SIZE",
"LIST_APPLICATION_RUNS_MIN_PAGE_SIZE",
"NOT_YET_IMPLEMENTED",
"NOT_YET_IMPLEMENTED",
"REDIRECT_URI_DEV",
"REDIRECT_URI_PRODUCTION",
"REDIRECT_URI_STAGING",
Expand Down Expand Up @@ -167,7 +162,6 @@
"RunOutput",
"RunSdkMetadata",
"RunState",
"RunState",
"RunTerminationReason",
"SchedulingMetadata",
"Service",
Expand Down
2 changes: 2 additions & 0 deletions tests/aignostics/application/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,7 @@ def test_cli_run_execute_invalid_mapping_format(runner: CliRunner, tmp_path: Pat
str(tmp_path),
"--mapping",
".*\\.tiff:staining_method:H&E", # Wrong: colon instead of equals
"--force", # Skip health check; we're testing argument validation only
],
)
assert result.exit_code != 0
Expand All @@ -1167,6 +1168,7 @@ def test_cli_run_execute_invalid_regex_pattern(runner: CliRunner, tmp_path: Path
str(tmp_path),
"--mapping",
"*.tiff:staining_method=H&E", # Wrong: glob pattern, not regex
"--force", # Skip health check; we're testing argument validation only
],
)
assert result.exit_code != 0
Expand Down
2 changes: 1 addition & 1 deletion tests/aignostics/system/service_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_get_cpu_freq_info_handles_missing_cpu_freq() -> None:
had_cpu_freq = hasattr(psutil, "cpu_freq")
original: Any = getattr(psutil, "cpu_freq", None)
if had_cpu_freq:
delattr(psutil, "cpu_freq")
del psutil.cpu_freq
try:
result = Service._get_cpu_freq_info()
finally:
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading