Skip to content

Commit

Permalink
chore: bump vllm version -> perf: faster import time
Browse files Browse the repository at this point in the history
  • Loading branch information
benlipkin committed Sep 30, 2024
1 parent f84b0d7 commit 065abff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.7
rev: v0.6.8
hooks:
- id: ruff
args: [ --fix ]
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@
core_requirements = [
"jax==0.4.31",
"jaxtyping==0.2.34",
"vllm==0.6.1.post2",
"vllm==0.6.2",
]
dev_requirements = [
"pdoc==14.7.0",
"pre-commit==3.8.0",
"pyright==1.1.381",
"pyright==1.1.382.post1",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest-html==4.1.1",
"ruff==0.6.7",
"ruff==0.6.8",
]

with pathlib.Path("README.md").open(encoding="utf-8") as f:
readme = f.read()

setuptools.setup(
name="decoding",
version="0.1.0.post1",
version="0.1.1",
description="Composable inference algorithms with LLMs and programmable logic",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 065abff

Please sign in to comment.