Skip to content

Commit

Permalink
Set python to version 3.10 within venv
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Feb 4, 2025
1 parent ebcda89 commit 76cbed9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node_hub_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
3 changes: 1 addition & 2 deletions node-hub/dora-outtetts/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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]
Expand Down

0 comments on commit 76cbed9

Please sign in to comment.