Skip to content

Commit 31d2ab4

Browse files
authored
Remove python 3.10 requirement (#2040)
1 parent eb17212 commit 31d2ab4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Install vLLM with pip or [from source](https://vllm.readthedocs.io/en/latest/get
7272
```bash
7373
pip install vllm
7474
```
75-
**NOTE:** The Mixtral model additionally requires `megablocks` which can be installed with pip or [from source](https://github.com/stanford-futuredata/megablocks) on **Python 3.10**:
75+
**NOTE:** The Mixtral model additionally requires `megablocks` which can be installed with pip or [from source](https://github.com/stanford-futuredata/megablocks):
7676
```bash
7777
pip install megablocks
7878
```

vllm/model_executor/models/mixtral.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
import megablocks.ops as ops
3636
except ImportError:
3737
print(
38-
"MegaBlocks not found. Please install it by `pip install megablocks`. "
39-
"Note that MegaBlocks depends on mosaicml-turbo, which only supports "
40-
"Python 3.10 for now.")
38+
"MegaBlocks not found. Please install it by `pip install megablocks`.")
4139
try:
4240
import stk
4341
except ImportError:

0 commit comments

Comments
 (0)