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 @@ -37,7 +37,7 @@ features = ["pyo3/extension-module"]
asyncio_mode = "auto"

[tool.uv.sources]
virtool = { git = "https://github.com/virtool/virtool", tag = "38.17.0" }
virtool = { git = "https://github.com/virtool/virtool", tag = "38.48.0" }

[build-system]
requires = ["maturin>=1.14.0,<2.0"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ async def test_eliminate_subtraction(
intermediate = SimpleNamespace()

if subtractions:
cached_subtraction_path = tmp_path / subtractions[0].id
cached_subtraction_path = tmp_path / str(subtractions[0].id)
shutil.copytree(subtractions[0].path, cached_subtraction_path)

await create_subtraction_index(
Expand Down
56 changes: 31 additions & 25 deletions uv.lock

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

4 changes: 2 additions & 2 deletions workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

def get_subtraction_index_path(
subtraction_indexes_path: Path,
subtraction_id: str,
subtraction_id: int,
) -> Path:
return subtraction_indexes_path / subtraction_id / "subtraction"
return subtraction_indexes_path / str(subtraction_id) / "subtraction"


@hooks.on_failure
Expand Down
Loading