diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e88f1de..73a3646 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,9 +21,10 @@ jobs: with: python-version: "3.x" - - name: Install uv - uses: astral-sh/setup-uv@v8.0.0 + - name: Install tox + run: | + python -m pip install tox - name: Docs run: | - uvx --with tox-uv tox -e docs + python -m tox -e docs diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 23ea7f6..3d24c0c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-python@v6 with: python-version: "3.x" - - name: Install uv - uses: astral-sh/setup-uv@v8.0.0 + - name: Install tox + run: python -m pip install tox - name: Mypy - run: uvx --with tox-uv tox -e mypy + run: python -m tox -e mypy diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad974b1..daaa78a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,8 +53,9 @@ jobs: run: | brew install gettext - - name: Install uv - uses: astral-sh/setup-uv@v8.0.0 + - name: Install tox + run: | + python -m pip install tox - name: Generate translation binaries run: | @@ -62,7 +63,7 @@ jobs: - name: Tox tests run: | - uvx --python ${{ matrix.python-version }} --with tox-uv tox -e py + python -m tox -e py - name: Upload coverage uses: codecov/codecov-action@v6