Skip to content

Commit 17c93bb

Browse files
committed
Fixed integration test bug, bumped version for release with new models
1 parent ff322fb commit 17c93bb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "audio-separator"
7-
version = "0.35.2"
7+
version = "0.36.0"
88
description = "Easy to use audio stem separation, using various models from UVR trained primarily by @Anjok07"
99
authors = ["Andrew Beveridge <andrew@beveridge.uk>"]
1010
license = "MIT"

tests/integration/test_remote_api_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def do_GET(self):
4949
parts = path.split("/")
5050
if len(parts) >= 4:
5151
task_id = parts[2]
52-
filename = parts[3]
52+
filename = urllib.parse.unquote(parts[3])
5353

5454
# Check if job exists and is completed
5555
if task_id in self.jobs and self.jobs[task_id]["status"] == "completed":

0 commit comments

Comments
 (0)