From ecac968d8a15a68dd4979fe9d9b749d9b167538f Mon Sep 17 00:00:00 2001 From: JessicaTegner Date: Sun, 22 Dec 2024 13:17:04 +0100 Subject: [PATCH] removed uv --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8c2ff30..157da17 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,13 +32,13 @@ jobs: - name: install TinyTeX uses: r-lib/actions/setup-tinytex@v2 - name: Install and configure UV - run: pip3 install --upgrade uv setuptools + run: pip3 install --upgrade pip setuptools wheel - name: Install dependencies - run: uv sync --dev + run: pip3 install -e .[dev] - name: Download pandoc - run: ./.venv/scripts/python setup_binary.py download_pandoc + run: python setup_binary.py download_pandoc - name: run tests - run: ./.venv/scripts/python tests.py + run: python tests.py builder_pypandoc: needs: [test]