diff --git a/.github/workflows/node_hub_test.sh b/.github/workflows/node_hub_test.sh index 64b491ece..1ddabd371 100755 --- a/.github/workflows/node_hub_test.sh +++ b/.github/workflows/node_hub_test.sh @@ -42,7 +42,7 @@ else else if [ -f "$dir/pyproject.toml" ]; then echo "CI: Installing in $dir..." - uv venv --seed + uv venv --seed -p 3.10 uv pip install . echo "CI: Running Linting in $dir..." uv run ruff check . diff --git a/node-hub/dora-outtetts/pyproject.toml b/node-hub/dora-outtetts/pyproject.toml index a6a0f826a..3cd607eef 100644 --- a/node-hub/dora-outtetts/pyproject.toml +++ b/node-hub/dora-outtetts/pyproject.toml @@ -5,7 +5,7 @@ authors = [] description = "dora-outtetts" license = { text = "MIT" } readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "dora-rs >= 0.3.6", @@ -23,7 +23,6 @@ llama-cpp-python = [ { marker = "sys_platform == 'darwin' and python_version == '3.9'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp39-cp39-macosx_11_0_arm64.whl" }, { marker = "sys_platform == 'darwin' and python_version == '3.10'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp310-cp310-macosx_11_0_arm64.whl" }, { marker = "sys_platform == 'darwin' and python_version == '3.11'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp311-cp311-macosx_11_0_arm64.whl" }, - { marker = "sys_platform == 'darwin' and python_version == '3.12'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp312-cp312-macosx_11_0_arm64.whl" }, ] [project.scripts]