Skip to content

Commit

Permalink
Add uvicorn to optional deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Mar 16, 2024
1 parent 0a6d421 commit 3d7daa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage_and_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: "Install Python deps @ ${{ matrix.python-version }}"
id: install-deps
run: |
pip install -Ur requirements.txt starlette
pip install -Ur requirements.txt starlette uvicorn
- name: "Run Pyright @ ${{ matrix.python-version }}"
uses: jakebailey/pyright-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies = { file = ["requirements.txt"] }

[project.optional-dependencies]
docs = ["mkdocs-material", "mkdocstrings-python", "mkdocstrings"]
starlette = ["starlette"]
starlette = ["starlette", "uvicorn"]
dev = ["ruff", "pyright", "isort"]

[tool.ruff]
Expand Down

0 comments on commit 3d7daa9

Please sign in to comment.