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 .github/workflows/quality-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- uses: actions/checkout@v4
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/compress.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LLM Compressor provides a straightforward way to compress your models using vari

Before you begin, ensure that your environment meets the following prerequisites:
- **Operating System:** Linux (recommended for GPU support)
- **Python Version:** 3.9 or newer
- **Python Version:** 3.10 or newer
- **Available GPU:** For optimal performance, it's recommended to use a GPU. LLM Compressor supports the latest PyTorch and CUDA versions for compatibility with NVIDIA GPUs.

## Select a Model and Dataset
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ vLLM is a high-performance inference engine designed for large language models,

Before deploying your model, ensure you have the following prerequisites:
- **Operating System:** Linux (recommended for GPU support)
- **Python Version:** 3.9 or newer
- **Python Version:** 3.10 or newer
- **Available GPU:** For optimal performance, it's recommended to use a GPU. vLLM supports a range of accelerators, including NVIDIA GPUs, AMD GPUs, TPUs, and other accelerators.
- **vLLM Installed:** Ensure you have vLLM installed. You can install it using pip:
```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LLM Compressor can be installed using several methods depending on your requirem
Before installing LLM Compressor, ensure you have the following prerequisites:

- **Operating System:** Linux (recommended for GPU support)
- **Python Version:** 3.9 or newer
- **Python Version:** 3.10 or newer
- **Pip Version:** Ensure you have the latest version of pip installed. You can upgrade pip using the following command:

```bash
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def localversion_func(version: ScmVersion) -> str:
"lm_eval==0.4.5",
# test dependencies
"beautifulsoup4~=4.12.3",
"cmarkgfm~=2024.1.14",
"cmarkgfm>=2024.1.14",
"trl>=0.10.1",
"pandas<2.3.0",
"torchvision",
Expand Down Expand Up @@ -184,7 +184,7 @@ def localversion_func(version: ScmVersion) -> str:
"llmcompressor.trace=llmcompressor.transformers.tracing.debug:main",
]
},
python_requires=">=3.9",
python_requires=">=3.10",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
Expand Down