Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ A fully decentralized inference engine developed by [Gradient](https://gradient.
## Installation

### Prerequisites
- Python>=3.11.0
- Python>=3.11.0,<3.14.0
- Ubuntu-24.04 for Blackwell GPUs

Below are installation methods for different operating systems.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "parallax"
version = "0.0.1"
description = "Decentralised pipeline-parallel LLM serving with Sglang + MLX-LM + Lattica"
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.11,<3.14"
packages = [
{ include = "parallax", from = "src" },
{ include = "scheduling", from = "src" },
Expand Down
4 changes: 2 additions & 2 deletions src/parallax/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

def check_python_version():
"""Check if Python version is 3.11 or higher."""
if sys.version_info < (3, 11):
if sys.version_info < (3, 11) or sys.version_info >= (3, 14):
print(
f"Error: Python 3.11 or higher is required. Current version is {sys.version_info.major}.{sys.version_info.minor}."
f"Error: Python 3.11 or higher and less than 3.14 is required. Current version is {sys.version_info.major}.{sys.version_info.minor}."
)
sys.exit(1)

Expand Down