mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-04-28 03:20:01 +00:00
Relaxed python version requirements
This commit is contained in:
parent
2e8b22fa9d
commit
aaa62a2bd7
6 changed files with 6 additions and 6 deletions
|
|
@ -1 +1 @@
|
|||
3.14.3
|
||||
3.14
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
## CODING ENVIRONMENT
|
||||
|
||||
- Install astral uv using "curl -LsSf https://astral.sh/uv/install.sh | sh" if not already installed
|
||||
- Install Python 3.14.3 using `uv python install 3.14.3` if not already installed
|
||||
- Install Python 3.14 using `uv python install 3.14` if not already installed
|
||||
- Always use `uv run` to run files instead of the global `python` command.
|
||||
- Current uv ruff formatter is set to py314 which has supports multiple exception types without paranthesis (except TypeError, ValueError:)
|
||||
- Read `.env.example` for environment variables.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
## CODING ENVIRONMENT
|
||||
|
||||
- Install astral uv using "curl -LsSf https://astral.sh/uv/install.sh | sh" if not already installed
|
||||
- Install Python 3.14.3 using `uv python install 3.14.3` if not already installed
|
||||
- Install Python 3.14 using `uv python install 3.14` if not already installed
|
||||
- Always use `uv run` to run files instead of the global `python` command.
|
||||
- Current uv ruff formatter is set to py314 which has supports multiple exception types without paranthesis (except TypeError, ValueError:)
|
||||
- Read `.env.example` for environment variables.
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ A lightweight proxy that routes Claude Code's Anthropic API calls to **NVIDIA NI
|
|||
- **LM Studio**: No API key needed. Run locally with [LM Studio](https://lmstudio.ai)
|
||||
2. Install [Claude Code](https://github.com/anthropics/claude-code)
|
||||
3. Install [uv](https://github.com/astral-sh/uv)
|
||||
4. Install Python 3.14.3: `uv python install 3.14.3`
|
||||
4. Install Python 3.14: `uv python install 3.14`
|
||||
|
||||
### Clone & Configure
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ name = "free-claude-code"
|
|||
version = "2.0.0"
|
||||
description = "Middleware between Claude Code CLI (Anthropic API) and NVIDIA NIM"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14.3"
|
||||
requires-python = ">=3.14"
|
||||
dependencies = [
|
||||
"fastapi[standard]>=0.115.11",
|
||||
"uvicorn>=0.34.0",
|
||||
|
|
|
|||
2
uv.lock
generated
2
uv.lock
generated
|
|
@ -1,6 +1,6 @@
|
|||
version = 1
|
||||
revision = 3
|
||||
requires-python = ">=3.14.3"
|
||||
requires-python = ">=3.14"
|
||||
|
||||
[[package]]
|
||||
name = "accelerate"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue