diff --git a/README.md b/README.md index deaf7a4..65550ae 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ pip install git+https://github.com/moises-ai/maestro-worker-python.git To install a version (recommended): ``` -pip install git+https://github.com/moises-ai/maestro-worker-python.git@1.0.16 +pip install git+https://github.com/moises-ai/maestro-worker-python.git@1.0.17 ``` ## Maestro init diff --git a/maestro_worker_python/data/docker-compose.yaml b/maestro_worker_python/data/docker-compose.yaml index a4ea123..135e11f 100644 --- a/maestro_worker_python/data/docker-compose.yaml +++ b/maestro_worker_python/data/docker-compose.yaml @@ -2,7 +2,7 @@ version: "3.9" services: worker: build: . - command: maestro-server --worker /worker/worker.py --base_path /worker-example --port 8000 --reload + command: maestro-server --worker /worker/worker.py --base_path /worker-whisper-large --port 8000 --reload True ports: - "8000:8000" expose: diff --git a/maestro_worker_python/data/requirements.txt b/maestro_worker_python/data/requirements.txt index cfebd03..5c164d8 100644 --- a/maestro_worker_python/data/requirements.txt +++ b/maestro_worker_python/data/requirements.txt @@ -1 +1 @@ -git+https://github.com/moises-ai/maestro-worker-python.git@1.0.16 \ No newline at end of file +git+https://github.com/moises-ai/maestro-worker-python.git@1.0.17 \ No newline at end of file diff --git a/setup.py b/setup.py index 0587eb5..ea0c41a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="maestro_worker_python", py_modules=["maestro_worker_python", "maestro_worker_python.worker_example"], - version="1.0.16", + version="1.0.17", description="Utility to run workers on Moises/Maestro", readme="README.md", python_requires=">=3.8",