Skip to content

Commit c733544

Browse files
authored
Move non optional deps to non optional (#23)
I think all these dependencies are required now (they were nearly specified in all the "optional" groups, but with an inconsistency with the cpu extras introduced by me in a previous pr)
1 parent 9d3d63f commit c733544

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

pyproject.toml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,26 @@ version = "0.2.0"
1212
dependencies = [
1313
'spacy==3.7.5',
1414
'spacy-alignments',
15-
'ray',
15+
'ray<3',
16+
'kubernetes==29.0.0',
17+
'vllm>=0.8.2,<0.9.0',
1618
]
1719

1820
[project.optional-dependencies]
1921
cpu = [
2022
'llm-foundry[all-cpu]@git+https://github.com/mosaicml/llm-foundry.git@main#egg=llmfoundry',
21-
'kubernetes==29.0.0',
2223
]
2324
gpu = [
2425
'llm-foundry[all]@git+https://github.com/mosaicml/llm-foundry.git@main#egg=llmfoundry',
25-
'kubernetes==29.0.0',
26-
'vllm>=0.8.2,<0.9.0',
2726
]
2827
dev = [
2928
'llm-foundry[dev]@git+https://github.com/mosaicml/llm-foundry.git@main#egg=llmfoundry',
30-
'kubernetes==29.0.0',
31-
'vllm>=0.8.2,<0.9.0',
3229
]
3330
released = [
3431
'llm-foundry[all]>=0.17.1',
35-
'kubernetes==29.0.0',
36-
'vllm>=0.8.2,<0.9.0',
3732
]
3833
cpu_released = [
3934
'llm-foundry[all-cpu]>=0.17.1',
40-
'vllm>=0.8.2,<0.9.0',
4135
]
4236

4337
# Registry entry points

0 commit comments

Comments
 (0)