Relaxed python version requirements

This commit is contained in:
Alishahryar1 2026-03-01 22:00:34 -08:00
parent 2e8b22fa9d
commit aaa62a2bd7
6 changed files with 6 additions and 6 deletions

View file

@ -1 +1 @@
3.14.3
3.14

View file

@ -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.

View file

@ -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.

View file

@ -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

View file

@ -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
View file

@ -1,6 +1,6 @@
version = 1
revision = 3
requires-python = ">=3.14.3"
requires-python = ">=3.14"
[[package]]
name = "accelerate"