From 7d87823275bfc9ffba9610c1d61ea2cf1b4cfd9a Mon Sep 17 00:00:00 2001 From: EvieePy <29671945+EvieePy@users.noreply.github.com> Date: Sun, 5 Jan 2025 06:27:39 +1000 Subject: [PATCH] Remove requirements flag in workflow --- .github/workflows/coverage_lint_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage_lint_build.yml b/.github/workflows/coverage_lint_build.yml index 7786facc..9ce58585 100644 --- a/.github/workflows/coverage_lint_build.yml +++ b/.github/workflows/coverage_lint_build.yml @@ -68,7 +68,7 @@ jobs: run: | sudo apt update python -m ensurepip - pip install -Ur '.[starlette,docs]' + pip install -U '.[starlette,docs]' - name: Build Docs run: | cd docs @@ -99,7 +99,7 @@ jobs: - name: "Install Python deps @ ${{ matrix.python-version }}" id: install-deps run: | - pip install -Ur '.[starlette]' + pip install -U '.[starlette]' - name: "Run Pyright @ ${{ matrix.python-version }}" uses: jakebailey/pyright-action@v1 with: